Skip to content

Commit

Permalink
Vault v0.11.1 and more
Browse files Browse the repository at this point in the history
- Vault v0.11.1
- Update tasks/normalize conditionals
- Update TLS variable names to match documentation
- Conditional mlock capability (thanks @jpiron)
- Streamline installation tasks (thanks @jpiron)
- Update documentation
  • Loading branch information
brianshumate committed Sep 7, 2018
1 parent 67abb39 commit 1ade8a8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## v2.0.4 (UNRELEASED)
## v2.0.4

- Vault v0.11.1
- Update tasks/normalize conditionals
- Update TLS variable names to match documentation
- Conditional mlock capability (thanks @jpiron)
- Streamline installation tasks (thanks @jpiron)
- Update documentation

## v2.0.3
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ Thank you to all these fine folks for helping with ansible-vault!
- [@aarnaud](https://github.com/aarnaud)
- [@eripa](https://github.com/eripa)
- [@drewmullen](https://github.com/drewmullen)
- [@jpiron](https://github.com/jpiron)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ This role requires FreeBSD, or a Debian or RHEL based Linux distribution. It
might work with other software versions, but does work with the following
specific software and versions:

* Ansible: 2.6.3
* Vault: 0.10.4
* Ansible: 2.6.4
* Vault: 0.11.1
* Debian: 9
* FreeBSD 11
* Ubuntu 16.04
Expand All @@ -38,7 +38,7 @@ The role defines variables in `defaults/main.yml`:
- Will include "+prem" if vault_enterprise_premium=True
- Will include ".hsm" if vault_enterprise_premium_hsm=True

- Default value: *0.10.4*
- Default value: *0.11.1*

### `vault_enterprise`

Expand Down
3 changes: 1 addition & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Core

### Package
vault_version: "{{ lookup('env','VAULT_VERSION') | default('0.10.4', true) }}{{'+prem' if vault_enterprise_premium else '' }}{{'.hsm' if vault_enterprise_premium_hsm else '' }}"
vault_version: "{{ lookup('env','VAULT_VERSION') | default('0.11.1', true) }}{{'+prem' if vault_enterprise_premium else '' }}{{'.hsm' if vault_enterprise_premium_hsm else '' }}"
vault_architecture_map:
# this first entry seems... redundant (but it's required for reasons)
amd64: amd64
Expand Down Expand Up @@ -109,4 +109,3 @@ vault_seal_key_mechanism: ''
vault_seal_token_label: ''
vault_seal_slot: 0
vault_softcard_enable: false

6 changes: 3 additions & 3 deletions examples/README_VAGRANT.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ variable.
## Notes

1. This project functions with the following software versions:
* Vault version 0.10.4
* Ansible: 2.6.3
* Vault version 0.11.1
* Ansible: 2.6.4
* VirtualBox version 5.2.18
* Vagrant version 2.1.2
* Vagrant version 2.1.4
* Vagrant Hosts version 2.8.1
2. This project uses Debian 8 (Jessie) by default, but you can choose another
OS distribution with the *BOX_NAME* environment variable
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.3
v2.0.4

0 comments on commit 1ade8a8

Please sign in to comment.