Skip to content
This repository has been archived by the owner on Oct 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #14 from hashicorp/cotarg/docs-updates
Browse files Browse the repository at this point in the history
docs update
  • Loading branch information
cotarg authored Jul 2, 2020
2 parents 66cf964 + 78cee43 commit c3951a9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 27 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 0.1.1 (July 02, 2020)

IMPROVEMENTS:

* documentation: updated refs and corrected links
* documentation: added CHANGELOG

## 0.1.0 (July 02, 2020)

* Initial release
29 changes: 2 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ provider "random" {
}
module "consul_cluster" {
source = "github.com/hashicorp/terraform-aws-consul-oss.git"
source = "hashicorp/consul-oss/aws"
version = "0.1.0"
vpc_id = "<your VPC id>"
owner = "<owner name/tag>"
Expand All @@ -37,32 +38,6 @@ module "consul_cluster" {

Note: Currently the random provider is required for this module's functionality.

- If you want to use a certain release of the module, specify the `ref` tag in
your source option as shown below:

```hcl
provider "aws" {
region = "<your AWS region>"
}
provider "random" {
version = "~> 2.2"
}
module "consul_cluster" {
source = "github.com/hashicorp/terraform-aws-consul-oss.git?ref=v0.1.0"
vpc_id = "<your VPC id>"
owner = "<owner name/tag>"
consul_version = "<version of Consul>"
name_prefix = "<name prefix you would like attached to your environment>"
key_name = "<your SSH key name>"
consul_servers = 5
consul_clients = 3
}
```

- Run `terraform init` and `terraform apply`

## License
Expand Down

0 comments on commit c3951a9

Please sign in to comment.