Skip to content

Commit

Permalink
Merge pull request #14 from hashicorp-modules/f-bump-versions
Browse files Browse the repository at this point in the history
F bump versions
  • Loading branch information
bensojona authored Jul 16, 2018
2 parents 26f620c + f22c700 commit b3430c2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Checkout [examples](./examples) for fully functioning examples.
- `create`: [Optional] Create Module, defaults to true.
- `name`: [Optional] Name for resources, defaults to "hashistack-aws".
- `release_version`: [Optional] Release version tag to use (e.g. 0.1.0, 0.1.0-rc1, 0.1.0-beta1, 0.1.0-dev1), defaults to "0.1.0", view releases at https://github.com/hashicorp/guides-configuration#hashistack-version-tables.
- `consul_version`: [Optional] Consul version tag to use (e.g. 1.0.6 or 1.0.6-ent), defaults to "1.0.6".
- `vault_version`: [Optional] Vault version tag to use (e.g. 0.10.0 or 0.10.0-ent), defaults to "0.10.0".
- `nomad_version`: [Optional] Nomad version tag to use (e.g. 0.8.0 or 0.8.0-ent), defaults to "0.8.0".
- `consul_version`: [Optional] Consul version tag to use (e.g. 1.2.0 or 1.2.0-ent), defaults to "1.2.0".
- `vault_version`: [Optional] Vault version tag to use (e.g. 0.10.3 or 0.10.3-ent), defaults to "0.10.3".
- `nomad_version`: [Optional] Nomad version tag to use (e.g. 0.8.4 or 0.8.4-ent), defaults to "0.8.4".
- `os`: [Optional] Operating System to use (e.g. RHEL or Ubuntu), defaults to "RHEL".
- `os_version`: [Optional] Operating System version to use (e.g. 7.3 for RHEL or 16.04 for Ubuntu), defaults to "7.3".
- `vpc_id`: [Required] VPC ID to provision resources in.
Expand Down
12 changes: 6 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ variable "release_version" {
}

variable "consul_version" {
description = "Consul version tag (e.g. 1.0.6 or 1.0.6-ent), defaults to \"1.0.6\"."
default = "1.0.6"
description = "Consul version tag (e.g. 1.2.0 or 1.2.0-ent), defaults to \"1.2.0\"."
default = "1.2.0"
}

variable "vault_version" {
description = "Vault version tag (e.g. 0.10.0 or 0.10.0-ent), defaults to \"0.10.0\"."
default = "0.10.0"
description = "Vault version tag (e.g. 0.10.3 or 0.10.3-ent), defaults to \"0.10.3\"."
default = "0.10.3"
}

variable "nomad_version" {
description = "Nomad version tag (e.g. 0.8.0 or 0.8.0-ent), defaults to \"0.8.0\"."
default = "0.8.0"
description = "Nomad version tag (e.g. 0.8.4 or 0.8.4-ent), defaults to \"0.8.4\"."
default = "0.8.4"
}

variable "os" {
Expand Down

0 comments on commit b3430c2

Please sign in to comment.