Skip to content

Commit fb3b781

Browse files
tescaladaantonbabenko
authored andcommitted
Fixing typo overriden -> overridden (#150)
just a typo in the docs and in the public_subnet_tags in the simple example
1 parent f7a874c commit fb3b781

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
164164
| Name | Description | Type | Default | Required |
165165
|------|-------------|:----:|:-----:|:-----:|
166166
| azs | A list of availability zones in the region | string | `<list>` | no |
167-
| 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 |
167+
| 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 |
168168
| create_database_subnet_group | Controls if database subnet group should be created | string | `true` | no |
169169
| create_vpc | Controls if VPC should be created (it affects almost all resources) | string | `true` | no |
170170
| database_subnet_group_tags | Additional tags for the database subnet group | string | `<map>` | no |

examples/simple-vpc/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "vpc" {
1717
single_nat_gateway = true
1818

1919
public_subnet_tags = {
20-
Name = "overriden-name-public"
20+
Name = "overridden-name-public"
2121
}
2222

2323
tags = {

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ variable "name" {
99
}
1010

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

0 commit comments

Comments
 (0)