2017-01-13 20:31:10 +00:00
|
|
|
---
|
2018-01-29 11:37:48 +00:00
|
|
|
- import_tasks: ../shared/issue_cert.yml
|
2017-01-13 20:31:10 +00:00
|
|
|
vars:
|
2017-09-01 19:51:37 +00:00
|
|
|
issue_cert_common_name: "{{ vault_pki_mounts.vault.roles[0].name }}"
|
2017-12-11 23:28:18 +00:00
|
|
|
issue_cert_alt_names: "{{ groups['vault'] + ['localhost'] + (vault_ca_options['vault']['alt_names'].split(','))|default() }}"
|
2017-12-11 12:48:07 +00:00
|
|
|
issue_cert_hosts: "{{ groups['vault'] }}"
|
2017-02-08 21:41:36 +00:00
|
|
|
issue_cert_ip_sans: >-
|
|
|
|
[
|
2017-12-11 12:48:07 +00:00
|
|
|
{%- for host in groups['vault'] -%}
|
2017-02-08 21:41:36 +00:00
|
|
|
"{{ hostvars[host]['ansible_default_ipv4']['address'] }}",
|
2017-09-01 19:51:37 +00:00
|
|
|
{%- if hostvars[host]['ip'] is defined -%}
|
|
|
|
"{{ hostvars[host]['ip'] }}",
|
|
|
|
{%- endif -%}
|
2017-01-13 20:31:10 +00:00
|
|
|
{%- endfor -%}
|
2017-02-08 21:41:36 +00:00
|
|
|
"127.0.0.1","::1"
|
|
|
|
]
|
2017-09-01 19:51:37 +00:00
|
|
|
issue_cert_mount_path: "{{ vault_pki_mounts.vault.name }}"
|
2017-02-08 21:41:36 +00:00
|
|
|
issue_cert_path: "{{ vault_cert_dir }}/api.pem"
|
2017-09-01 19:51:37 +00:00
|
|
|
issue_cert_role: "{{ vault_pki_mounts.vault.roles[0].name }}"
|
2017-02-08 21:41:36 +00:00
|
|
|
issue_cert_url: "{{ vault_leader_url }}"
|
2017-01-13 20:31:10 +00:00
|
|
|
when: vault_api_cert_needed
|