blob: f8d24c674ee4d1301075587508f631a35fdc3dcf [file] [log] [blame]
Zack Williamsc047c872017-01-11 08:38:15 -07001---
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