providers/aws: classic SG test should test classic
This commit is contained in:
parent
37eecd389b
commit
c5c3de4f01
|
@ -1497,14 +1497,9 @@ provider "aws" {
|
||||||
region = "us-east-1"
|
region = "us-east-1"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "aws_vpc" "foo" {
|
|
||||||
cidr_block = "10.1.0.0/16"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "aws_security_group" "other_web" {
|
resource "aws_security_group" "other_web" {
|
||||||
name = "tf_other_acc_tests"
|
name = "tf_other_acc_tests"
|
||||||
description = "Used in the terraform acceptance tests"
|
description = "Used in the terraform acceptance tests"
|
||||||
vpc_id = "${aws_vpc.foo.id}"
|
|
||||||
|
|
||||||
tags {
|
tags {
|
||||||
Name = "tf-acc-test"
|
Name = "tf-acc-test"
|
||||||
|
@ -1514,7 +1509,6 @@ resource "aws_security_group" "other_web" {
|
||||||
resource "aws_security_group" "web" {
|
resource "aws_security_group" "web" {
|
||||||
name = "terraform_acceptance_test_example"
|
name = "terraform_acceptance_test_example"
|
||||||
description = "Used in the terraform acceptance tests"
|
description = "Used in the terraform acceptance tests"
|
||||||
vpc_id = "${aws_vpc.foo.id}"
|
|
||||||
|
|
||||||
ingress {
|
ingress {
|
||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
|
|
Loading…
Reference in New Issue