diff --git a/README.md b/README.md index ce9fded..24b11c3 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ module "az" { source = "github.com/unifio/terraform-aws-vpc?ref=master//az" vpc_id = "${module.vpc_base.vpc_id}" +} ``` ## Base Module ## @@ -37,7 +38,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. diff --git a/data/stacks/overrides.yaml b/data/stacks/overrides.yaml index 0872da1..2cdd1c9 100644 --- a/data/stacks/overrides.yaml +++ b/data/stacks/overrides.yaml @@ -15,7 +15,7 @@ overrides::state: examples::complete::vars: domain_name: 'complete.example' enable_classiclink: 'true' - instance_tenacy: 'dedicated' + instance_tenancy: 'dedicated' lans_per_az: '2' name_servers: - '172.16.0.2'