Skip to content

Commit

Permalink
Fix vars
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed Apr 9, 2017
1 parent 29a51a9 commit 95918ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,10 @@

## v1.5.0

- Add initial multi-archictecture and OS support
- Add initial multi-architecture and OS support
- Add FreeBSD support
- Update documentation

## v1.5.1

- Fixed vault_tls_cert_file and vault_tls_key_file vars
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ vault_cluster_address: "{{ hostvars[inventory_hostname]['ansible_'+vault_iface][

vault_tls_config_path: /etc/vault/tls
vault_tls_disable: "{{ lookup('env','VAULT_TLS_DISABLE') | default(1, true) }}"
vault_tls_cert_file: "../files/{{ vault_node_name.crt }}"
vault_tls_cert_file: "../files/{{ vault_node_name }}.crt"
# /etc/pki/tls/certs/vault.crt is distribution-specific/not a good default
# a distribution-specific play to link into expected destination is preferred
vault_tls_cert_file_dest: "{{ vault_tls_config_path }}/vault.crt"
vault_tls_key_file: "../files/{{ vault_node_name.key }}"
vault_tls_key_file: "../files/{{ vault_node_name }}.key"
# "/etc/pki/tls/private/vault.key" is distribution-specific/not a good default
# a distribution-specific play to link into expected destination is preferred
vault_tls_key_file_dest: "{{ vault_tls_config_path }}/vault.key"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.5.0
v1.5.1

0 comments on commit 95918ab

Please sign in to comment.