2017-01-13 20:31:10 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: boostrap/gen_vault_certs | Add the vault role
|
|
|
|
uri:
|
2017-08-30 13:03:22 +00:00
|
|
|
url: "{{ vault_leader_url }}/v1/{{ vault_ca_options.common_name }}/roles/vault"
|
2017-01-13 20:31:10 +00:00
|
|
|
headers: "{{ vault_headers }}"
|
|
|
|
method: POST
|
|
|
|
body_format: json
|
|
|
|
body: "{{ vault_default_role_permissions }}"
|
|
|
|
status_code: 204
|
|
|
|
when: inventory_hostname == groups.vault|first and vault_api_cert_needed
|
|
|
|
|
2017-02-08 21:41:36 +00:00
|
|
|
- include: ../shared/issue_cert.yml
|
2017-01-13 20:31:10 +00:00
|
|
|
vars:
|
2017-02-08 21:41:36 +00:00
|
|
|
issue_cert_alt_names: "{{ groups.vault + ['localhost'] }}"
|
|
|
|
issue_cert_hosts: "{{ groups.vault }}"
|
|
|
|
issue_cert_ip_sans: >-
|
|
|
|
[
|
2017-01-13 20:31:10 +00:00
|
|
|
{%- for host in groups.vault -%}
|
2017-02-08 21:41:36 +00:00
|
|
|
"{{ hostvars[host]['ansible_default_ipv4']['address'] }}",
|
2017-01-13 20:31:10 +00:00
|
|
|
{%- endfor -%}
|
2017-02-08 21:41:36 +00:00
|
|
|
"127.0.0.1","::1"
|
|
|
|
]
|
2017-08-30 13:03:22 +00:00
|
|
|
issue_cert_mount_path: "{{ vault_ca_options.common_name }}"
|
2017-02-08 21:41:36 +00:00
|
|
|
issue_cert_path: "{{ vault_cert_dir }}/api.pem"
|
|
|
|
issue_cert_headers: "{{ hostvars[groups.vault|first]['vault_headers'] }}"
|
|
|
|
issue_cert_role: vault
|
|
|
|
issue_cert_url: "{{ vault_leader_url }}"
|
2017-01-13 20:31:10 +00:00
|
|
|
when: vault_api_cert_needed
|