Skip to content

Commit

Permalink
Fixing typo overriden -> overridden (#150)
Browse files Browse the repository at this point in the history
just a typo in the docs and in the
public_subnet_tags in the simple example
  • Loading branch information
tescalada authored and antonbabenko committed Aug 18, 2018
1 parent f7a874c commit fb3b781
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| azs | A list of availability zones in the region | string | `<list>` | no |
| cidr | The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overriden | string | `0.0.0.0/0` | no |
| cidr | The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden | string | `0.0.0.0/0` | no |
| create_database_subnet_group | Controls if database subnet group should be created | string | `true` | no |
| create_vpc | Controls if VPC should be created (it affects almost all resources) | string | `true` | no |
| database_subnet_group_tags | Additional tags for the database subnet group | string | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module "vpc" {
single_nat_gateway = true

public_subnet_tags = {
Name = "overriden-name-public"
Name = "overridden-name-public"
}

tags = {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ variable "name" {
}

variable "cidr" {
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overriden"
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden"
default = "0.0.0.0/0"
}

Expand Down

0 comments on commit fb3b781

Please sign in to comment.