Skip to content

Commit

Permalink
Correct vars to fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
brianshumate committed May 28, 2017
1 parent 36aa3ba commit 5e14f2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,3 +264,7 @@
- Vault version 0.7.2
- Minor play updates
- Move asserts to asserts.yml file (thanks @groggemans)

## v1.6.3

- Correct Vault Enterprise variables to address #18
7 changes: 3 additions & 4 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
---
# File: defaults/main.yml - Main default variables for Vault

vault_version: "{{ lookup('env','VAULT_VERSION') | default('0.7.1', true) }}"
vault_version: "{{ lookup('env','VAULT_ENTERPRISE_VERSION') | default('0.7.2', true) }}"
vault_enterprise: "{{ lookup('env','VAULT_ENTERPRISE') | default(false, true) }}"
vault_version: "{{ lookup('env','VAULT_VERSION') | default('0.7.2', true) }}"
vault_architecture_map:
# this first entry seems... redundant (but it's required for reasons)
amd64: amd64
Expand Down Expand Up @@ -64,7 +62,8 @@ vault_shasums: "vault_{{ vault_version }}_SHA256SUMS"

### Vault Enterprise

vault_enterprise_pkg: "vault-enterprise_{{ vault_enterorise_version }}+ent_{{ vault_os }}_{{ vault_architecture }}.zip"
vault_enterprise: "{{ lookup('env','VAULT_ENTERPRISE') | default(false, true) }}"
vault_enterprise_pkg: "vault-enterprise_{{ vault_version }}+ent_{{ vault_os }}_{{ vault_architecture }}.zip"
vault_enterprise_shasums: "vault-enterprise_{{ vault_enterprise_version }}+ent_SHA256SUMS"

### Install Method
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.6.2
v1.6.3

0 comments on commit 5e14f2f

Please sign in to comment.