provider/aws: Update Elasticache Subnet test

This commit is contained in:
Clint Shryock 2015-05-06 13:44:24 -05:00
parent 5378d904a2
commit acbca8101c
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ func testAccCheckAWSElasticacheSubnetGroupExists(n string) resource.TestCheckFun
var testAccAWSElasticacheSubnetGroupConfig = fmt.Sprintf(`
resource "aws_vpc" "foo" {
cidr_block = "192.168.1.1/16"
cidr_block = "192.168.0.0/16"
tags {
Name = "tf-test"
}
@ -78,7 +78,7 @@ resource "aws_vpc" "foo" {
resource "aws_subnet" "foo" {
vpc_id = "${aws_vpc.foo.id}"
cidr_block = "192.168.1.1/20"
cidr_block = "192.168.0.0/20"
availability_zone = "us-west-2a"
tags {
Name = "tf-test"