Update acc tests

This commit is contained in:
clint shryock 2016-07-01 10:14:18 -05:00
parent 03baf3e5a5
commit 1d1cc9b572
1 changed files with 6 additions and 6 deletions

View File

@ -94,7 +94,7 @@ func TestAccAWSRedshiftSecurityGroup_ingressSecurityGroup(t *testing.T) {
resource.TestCheckResourceAttr(
"aws_redshift_security_group.bar", "ingress.#", "1"),
resource.TestCheckResourceAttr(
"aws_redshift_security_group.bar", "ingress.220863.security_group_name", "terraform_redshift_acceptance_test"),
"aws_redshift_security_group.bar", "ingress.2230908922.security_group_name", "terraform_redshift_acceptance_test"),
),
},
},
@ -333,7 +333,7 @@ resource "aws_security_group" "redshift" {
protocol = "tcp"
from_port = 22
to_port = 22
cidr_blocks = ["10.0.0.0/8"]
cidr_blocks = ["10.0.0.0/16"]
}
}
@ -345,7 +345,7 @@ resource "aws_security_group" "redshift2" {
protocol = "tcp"
from_port = 22
to_port = 22
cidr_blocks = ["10.0.10.0/8"]
cidr_blocks = ["10.1.0.0/16"]
}
}
@ -357,7 +357,7 @@ resource "aws_security_group" "redshift3" {
protocol = "tcp"
from_port = 22
to_port = 22
cidr_blocks = ["10.0.20.0/8"]
cidr_blocks = ["10.2.0.0/16"]
}
}
@ -394,7 +394,7 @@ resource "aws_security_group" "redshift" {
protocol = "tcp"
from_port = 22
to_port = 22
cidr_blocks = ["10.0.0.0/8"]
cidr_blocks = ["10.0.0.0/16"]
}
}
@ -406,7 +406,7 @@ resource "aws_security_group" "redshift2" {
protocol = "tcp"
from_port = 22
to_port = 22
cidr_blocks = ["10.0.10.0/8"]
cidr_blocks = ["10.1.0.0/16"]
}
}