providers/aws: classic SG test should test classic

This commit is contained in:
Mitchell Hashimoto 2016-04-20 16:44:44 -07:00
parent 37eecd389b
commit c5c3de4f01
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 0 additions and 6 deletions

View File

@ -1497,14 +1497,9 @@ provider "aws" {
region = "us-east-1"
}
resource "aws_vpc" "foo" {
cidr_block = "10.1.0.0/16"
}
resource "aws_security_group" "other_web" {
name = "tf_other_acc_tests"
description = "Used in the terraform acceptance tests"
vpc_id = "${aws_vpc.foo.id}"
tags {
Name = "tf-acc-test"
@ -1514,7 +1509,6 @@ resource "aws_security_group" "other_web" {
resource "aws_security_group" "web" {
name = "terraform_acceptance_test_example"
description = "Used in the terraform acceptance tests"
vpc_id = "${aws_vpc.foo.id}"
ingress {
protocol = "tcp"