-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
12811f1
commit 7bff3d5
Showing
5 changed files
with
32 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
# File: tasks/tls.yml - TLS tasks for Vault | ||
|
||
- name: Vault SSL Certificate and Key | ||
copy: | ||
src: "{{ item.src }}" | ||
dest: "{{ item.dest }}" | ||
owner: "{{ vault_user }}" | ||
group: "{{ vault_group }}" | ||
mode: "{{ item.mode }}" | ||
with_items: | ||
- src: "{{ vault_tls_cert_file }}" | ||
dest: "{{ vault_tls_cert_file_dest }}" | ||
mode: 0644 | ||
- src: "{{ vault_tls_key_file }}" | ||
dest: "{{ vault_tls_key_file_dest }}" | ||
mode: 0600 | ||
# These checks fail even though there are no values for the vars | ||
when: vault_tls_cert_file is defined and vault_tls_key_file is defined |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.3.7 | ||
v1.3.8 |