fixup
This commit is contained in:
parent
bb1238d6ac
commit
104ece979e
1 changed files with 9 additions and 2 deletions
|
@ -38,7 +38,9 @@
|
|||
format: "{{ issue_cert_format | d('pem') }}"
|
||||
ip_sans: "{{ issue_cert_ip_sans | default([]) | join(',') }}"
|
||||
register: issue_cert_result
|
||||
when: inventory_hostname == issue_cert_hosts|first
|
||||
when:
|
||||
- inventory_hostname in play_hosts
|
||||
- inventory_hostname == issue_cert_hosts|first
|
||||
|
||||
- name: issue_cert | Copy the cert to all hosts
|
||||
copy:
|
||||
|
@ -47,6 +49,7 @@
|
|||
group: "{{ issue_cert_file_group | d('root' )}}"
|
||||
mode: "{{ issue_cert_file_mode | d('0644') }}"
|
||||
owner: "{{ issue_cert_file_owner | d('root') }}"
|
||||
when: inventory_hostname in play_hosts
|
||||
|
||||
- name: issue_cert | Copy the key to all hosts
|
||||
copy:
|
||||
|
@ -55,6 +58,8 @@
|
|||
group: "{{ issue_cert_file_group | d('root' )}}"
|
||||
mode: "{{ issue_cert_file_mode | d('0640') }}"
|
||||
owner: "{{ issue_cert_file_owner | d('root') }}"
|
||||
when: inventory_hostname in play_hosts
|
||||
|
||||
|
||||
- name: issue_cert | Copy issuing CA cert
|
||||
copy:
|
||||
|
@ -63,4 +68,6 @@
|
|||
group: "{{ issue_cert_file_group | d('root' )}}"
|
||||
mode: "{{ issue_cert_file_mode | d('0644') }}"
|
||||
owner: "{{ issue_cert_file_owner | d('root') }}"
|
||||
when: issue_cert_copy_ca|default(false)
|
||||
when:
|
||||
- inventory_hostname in play_hosts
|
||||
- issue_cert_copy_ca|default(false)
|
||||
|
|
Loading…
Reference in a new issue