blob: 1e4eb0226d056b70e893c57a589d98e4806cc711 [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:
Zack Williamsa2763112017-01-03 11:38:38 -070011 - "profile_manifests/{{ cord_profile }}.yml"
12 - profile_manifests/local_vars.yml
Zack Williamsc047c872017-01-11 08:38:15 -070013
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