Zack Williams | c047c87 | 2017-01-11 08:38:15 -0700 | [diff] [blame] | 1 | --- |
2 | # Create a SSL CA for CORD pod use | ||||
3 | |||||
4 | - name: Include vars | ||||
5 | hosts: localhost | ||||
6 | connection: local | ||||
7 | tasks: | ||||
8 | - name: Include variables | ||||
9 | include_vars: "{{ item }}" | ||||
10 | with_items: | ||||
11 | - "vars/{{ cord_profile }}.yml" | ||||
12 | - vars/local_vars.yml | ||||
13 | |||||
14 | - name: Create Root CA, Intermediate CA, Server certs | ||||
15 | hosts: localhost | ||||
16 | connection: local | ||||
17 | roles: | ||||
18 | - pki-root-ca | ||||
19 | - pki-intermediate-ca | ||||
20 | - pki-cert | ||||
21 |