Browse Source
append newline char to vault generated certs
pull/2050/head
Julien BONACHERA
7 years ago
No known key found for this signature in database
GPG Key ID: 799C119A66AF218A
2 changed files with
3 additions and
3 deletions
-
roles/vault/tasks/bootstrap/ca_trust.yml
-
roles/vault/tasks/shared/issue_cert.yml
|
|
@ -19,7 +19,7 @@ |
|
|
|
|
|
|
|
- name: bootstrap/ca_trust | add CA to trusted CA dir |
|
|
|
copy: |
|
|
|
content: "{{ vault_cert_file_cat.get('stdout') }}" |
|
|
|
content: "{{ vault_cert_file_cat.get('stdout') }}\n" |
|
|
|
dest: "{{ ca_cert_path }}" |
|
|
|
register: vault_ca_cert |
|
|
|
|
|
|
|
|
|
@ -83,7 +83,7 @@ |
|
|
|
|
|
|
|
- name: "issue_cert | Copy {{ issue_cert_path }} cert to all hosts" |
|
|
|
copy: |
|
|
|
content: "{{ issue_cert_result['json']['data']['certificate'] }}" |
|
|
|
content: "{{ issue_cert_result['json']['data']['certificate'] }}\n" |
|
|
|
dest: "{{ issue_cert_path }}" |
|
|
|
group: "{{ issue_cert_file_group | d('root' )}}" |
|
|
|
mode: "{{ issue_cert_file_mode | d('0644') }}" |
|
|
@ -99,7 +99,7 @@ |
|
|
|
|
|
|
|
- name: issue_cert | Copy issuing CA cert |
|
|
|
copy: |
|
|
|
content: "{{ issue_cert_result['json']['data']['issuing_ca'] }}" |
|
|
|
content: "{{ issue_cert_result['json']['data']['issuing_ca'] }}\n" |
|
|
|
dest: "{{ issue_cert_path | dirname }}/ca.pem" |
|
|
|
group: "{{ issue_cert_file_group | d('root' )}}" |
|
|
|
mode: "{{ issue_cert_file_mode | d('0644') }}" |
|
|
|