dc6a17e092
import_tasks will consume far less memory, so it should be used whenever it is compatible.
20 lines
649 B
YAML
20 lines
649 B
YAML
---
|
|
|
|
- include_tasks: ../shared/pki_mount.yml
|
|
vars:
|
|
pki_mount_path: auth-pki
|
|
pki_mount_options:
|
|
description: PKI mount to generate certs for the Cert Auth Backend
|
|
config:
|
|
default_lease_ttl: "{{ vault_default_lease_ttl }}"
|
|
max_lease_ttl: "{{ vault_max_lease_ttl }}"
|
|
|
|
- name: shared/auth_mount | Create a dummy role for issuing certs from auth-pki
|
|
uri:
|
|
url: "{{ hostvars[groups.vault|first]['vault_leader_url'] }}/v1/auth-pki/roles/dummy"
|
|
headers: "{{ hostvars[groups.vault|first]['vault_headers'] }}"
|
|
method: POST
|
|
body_format: json
|
|
body:
|
|
{'allow_any_name': true}
|
|
status_code: 204
|