Skip to content

Commit

Permalink
Merge pull request #29 from dbravender/typos
Browse files Browse the repository at this point in the history
Add a close bracket in an example and change tenacy to tenancy
  • Loading branch information
blakeneyops authored Mar 7, 2018
2 parents 85ca404 + c601684 commit 5ced011
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ##
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion data/stacks/overrides.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 5ced011

Please sign in to comment.