From 78cee4360c2578e1c681d804c8b4704840e83d40 Mon Sep 17 00:00:00 2001 From: "chloe (@cotarg)" Date: Thu, 2 Jul 2020 11:54:15 -0700 Subject: [PATCH] updated docs and added changelog --- CHANGELOG.md | 10 ++++++++++ README.md | 29 ++--------------------------- 2 files changed, 12 insertions(+), 27 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..93bb229 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 5c46021..2161201 100644 --- a/README.md +++ b/README.md @@ -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 = "" owner = "" @@ -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 = "" -} - -provider "random" { - version = "~> 2.2" -} - -module "consul_cluster" { - source = "github.com/hashicorp/terraform-aws-consul-oss.git?ref=v0.1.0" - - vpc_id = "" - owner = "" - consul_version = "" - name_prefix = "" - key_name = "" - consul_servers = 5 - consul_clients = 3 -} -``` - - Run `terraform init` and `terraform apply` ## License