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: |
Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 11 | - "profile_manifests/{{ cord_profile }}.yml" |
| 12 | - profile_manifests/local_vars.yml |
Zack Williams | c047c87 | 2017-01-11 08:38:15 -0700 | [diff] [blame] | 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 | |