From 6005b5da79001cc6c680137a08525c8e160a2a79 Mon Sep 17 00:00:00 2001 From: Jamie Alessio Date: Thu, 7 Sep 2017 09:45:29 -0700 Subject: [PATCH 1/2] Fix source URLs --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ce9fded..caf502c 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@ The following code will yield a fully functioning VPC environment: ```js module "vpc_base" { - source = "github.com/terraform-aws-vpc?ref=master//base" + source = "github.com/unifio/terraform-aws-vpc//base?ref=master" } module "az" { - source = "github.com/unifio/terraform-aws-vpc?ref=master//az" + source = "github.com/unifio/terraform-aws-vpc//az?ref=master" vpc_id = "${module.vpc_base.vpc_id}" ``` @@ -47,7 +47,7 @@ Name | Type | Required | Description ```js module "vpc_base" { - source = "github.com/unifio/terraform-aws-vpc?ref=master//base" + source = "github.com/unifio/terraform-aws-vpc//base?ref=master" enable_dns = "true" enable_hostnames = "false" @@ -175,11 +175,11 @@ Name | Type | Required | Description ```js module "vpc_base" { - source = "github.com/terraform-aws-vpc?ref=master//base" + source = "github.com/terraform-aws-vpc//base?ref=master" } module "az" { - source = "github.com/unifio/terraform-aws-vpc?ref=master//az" + source = "github.com/unifio/terraform-aws-vpc//az?ref=master" azs_provisioned = 2 enable_dmz_public_ips = "true" From e33395bf8faa6c81a180e3acb1527880cf97a14f Mon Sep 17 00:00:00 2001 From: Jamie Alessio Date: Thu, 7 Sep 2017 09:45:46 -0700 Subject: [PATCH 2/2] Fix typo: 'tenacy' => 'tenancy' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index caf502c..190adce 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Name | Type | Required | Description `enable_dns` | string | Default: `true` | Specifies whether DNS resolution is supported for the VPC. `enable_hostnames` | string | Default: `true` | Specifies whether the instances launched in the VPC get DNS hostnames. `flow_log_traffic_type` | string | Default: `ALL` | The type of traffic to capture. Valid values: ACCEPT,REJECT,ALL. -`instance_tenacy` | string | Default: `default` | The allowed tenancy of instances launched into the VPC. Only other option at this time is `dedicated`, which will force any instance launched into the VPC to be dedicated, regardless of the tenancy option specified when the instance is launched. +`instance_tenancy` | string | Default: `default` | The allowed tenancy of instances launched into the VPC. Only other option at this time is `dedicated`, which will force any instance launched into the VPC to be dedicated, regardless of the tenancy option specified when the instance is launched. `stack_item_label` | string | Default: `qckstrt` | Short form identifier for this stack. This value is used to create the "Name" tag for resources created by this stack item, and also serves as a unique key for re-use. `stack_item_fullname` | string | Default: `VPC Quick Start` | Long form descriptive name for this stack item. This value is used to create the "application" tag for resources created by this stack item. `vpc_cidr` | string | Default: `172.16.0.0/21` | The CIDR block you want the VPC to cover.