website: fix cidr block on aws_subnet [GH-199]

This commit is contained in:
Mitchell Hashimoto 2014-08-19 12:49:30 -07:00
parent e2abcb9c14
commit 7ebd3c0a48
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ Provides an VPC subnet resource.
```
resource "aws_subnet" "main" {
vpc_id = "${aws_vpc.main.id}"
cidr_block = "10.0.1.0/16"
cidr_block = "10.0.1.0/24"
}
```