2014-07-10 22:39:43 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-16 17:14:23 +02:00
|
|
|
"reflect"
|
2014-07-16 18:01:56 +02:00
|
|
|
"testing"
|
2014-07-10 22:39:43 +02:00
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
"github.com/mitchellh/goamz/ec2"
|
|
|
|
)
|
|
|
|
|
2014-07-17 19:03:15 +02:00
|
|
|
func TestAccAWSSecurityGroup_normal(t *testing.T) {
|
2014-07-16 17:14:23 +02:00
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
2014-07-10 22:39:43 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
2014-07-10 22:43:03 +02:00
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
2014-07-10 22:39:43 +02:00
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfig,
|
2014-07-16 17:14:23 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
testAccCheckAWSSecurityGroupAttributes(&group),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "name", "terraform_acceptance_test_example"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "description", "Used in the terraform acceptance tests"),
|
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.protocol", "tcp"),
|
2014-07-16 17:14:23 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.from_port", "80"),
|
2014-07-16 17:14:23 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.to_port", "8000"),
|
2014-07-16 17:14:23 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.cidr_blocks.#", "1"),
|
2014-07-16 17:14:23 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.cidr_blocks.0", "10.0.0.0/8"),
|
2014-07-16 17:14:23 +02:00
|
|
|
),
|
2014-07-10 22:39:43 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-09-30 23:19:16 +02:00
|
|
|
func TestAccAWSSecurityGroup_self(t *testing.T) {
|
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
|
|
|
checkSelf := func(s *terraform.State) (err error) {
|
|
|
|
defer func() {
|
|
|
|
if e := recover(); e != nil {
|
|
|
|
err = fmt.Errorf("bad: %#v", group)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if group.IPPerms[0].SourceGroups[0].Id != group.Id {
|
|
|
|
return fmt.Errorf("bad: %#v", group)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigSelf,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "name", "terraform_acceptance_test_example"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "description", "Used in the terraform acceptance tests"),
|
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.3128515109.protocol", "tcp"),
|
2014-09-30 23:19:16 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.3128515109.from_port", "80"),
|
2014-09-30 23:19:16 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.3128515109.to_port", "8000"),
|
2014-09-30 23:19:16 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.3128515109.self", "true"),
|
2014-09-30 23:19:16 +02:00
|
|
|
checkSelf,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-17 19:03:15 +02:00
|
|
|
func TestAccAWSSecurityGroup_vpc(t *testing.T) {
|
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
|
|
|
testCheck := func(*terraform.State) error {
|
|
|
|
if group.VpcId == "" {
|
|
|
|
return fmt.Errorf("should have vpc ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigVpc,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
testAccCheckAWSSecurityGroupAttributes(&group),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "name", "terraform_acceptance_test_example"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_security_group.web", "description", "Used in the terraform acceptance tests"),
|
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.protocol", "tcp"),
|
2014-07-17 19:03:15 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.from_port", "80"),
|
2014-07-17 19:03:15 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.to_port", "8000"),
|
2014-07-17 19:03:15 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.cidr_blocks.#", "1"),
|
2014-07-17 19:03:15 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_security_group.web", "ingress.332851786.cidr_blocks.0", "10.0.0.0/8"),
|
2014-07-17 19:03:15 +02:00
|
|
|
testCheck,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-29 18:06:28 +02:00
|
|
|
func TestAccAWSSecurityGroup_MultiIngress(t *testing.T) {
|
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigMultiIngress,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
),
|
|
|
|
},
|
2014-08-20 20:18:00 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccAWSSecurityGroup_Change(t *testing.T) {
|
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
2014-07-29 18:06:28 +02:00
|
|
|
resource.TestStep{
|
2014-08-20 20:18:00 +02:00
|
|
|
Config: testAccAWSSecurityGroupConfig,
|
2014-07-29 18:06:28 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
),
|
|
|
|
},
|
2014-08-20 20:18:00 +02:00
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigChange,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.web", &group),
|
|
|
|
testAccCheckAWSSecurityGroupAttributesChanged(&group),
|
|
|
|
),
|
|
|
|
},
|
2014-07-29 18:06:28 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-10 22:39:43 +02:00
|
|
|
func testAccCheckAWSSecurityGroupDestroy(s *terraform.State) error {
|
2014-11-21 17:58:34 +01:00
|
|
|
conn := testAccProvider.Meta().(*AWSClient).ec2conn
|
2014-07-10 22:39:43 +02:00
|
|
|
|
2014-09-17 02:44:42 +02:00
|
|
|
for _, rs := range s.RootModule().Resources {
|
2014-07-10 22:39:43 +02:00
|
|
|
if rs.Type != "aws_security_group" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
sgs := []ec2.SecurityGroup{
|
|
|
|
ec2.SecurityGroup{
|
2014-09-17 02:44:42 +02:00
|
|
|
Id: rs.Primary.ID,
|
2014-07-10 22:39:43 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve our group
|
|
|
|
resp, err := conn.SecurityGroups(sgs, nil)
|
|
|
|
if err == nil {
|
2014-09-17 02:44:42 +02:00
|
|
|
if len(resp.Groups) > 0 && resp.Groups[0].Id == rs.Primary.ID {
|
|
|
|
return fmt.Errorf("Security Group (%s) still exists.", rs.Primary.ID)
|
2014-07-10 22:39:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ec2err, ok := err.(*ec2.Error)
|
|
|
|
if !ok {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Confirm error code is what we want
|
|
|
|
if ec2err.Code != "InvalidGroup.NotFound" {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:14:23 +02:00
|
|
|
func testAccCheckAWSSecurityGroupExists(n string, group *ec2.SecurityGroupInfo) resource.TestCheckFunc {
|
2014-07-10 22:39:43 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-09-17 02:44:42 +02:00
|
|
|
rs, ok := s.RootModule().Resources[n]
|
2014-07-10 22:39:43 +02:00
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found: %s", n)
|
|
|
|
}
|
|
|
|
|
2014-09-17 02:44:42 +02:00
|
|
|
if rs.Primary.ID == "" {
|
2014-07-10 22:39:43 +02:00
|
|
|
return fmt.Errorf("No Security Group is set")
|
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
conn := testAccProvider.Meta().(*AWSClient).ec2conn
|
2014-07-10 22:39:43 +02:00
|
|
|
sgs := []ec2.SecurityGroup{
|
|
|
|
ec2.SecurityGroup{
|
2014-09-17 02:44:42 +02:00
|
|
|
Id: rs.Primary.ID,
|
2014-07-10 22:39:43 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
resp, err := conn.SecurityGroups(sgs, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-09-17 02:44:42 +02:00
|
|
|
if len(resp.Groups) > 0 && resp.Groups[0].Id == rs.Primary.ID {
|
2014-07-16 17:14:23 +02:00
|
|
|
|
|
|
|
*group = resp.Groups[0]
|
|
|
|
|
2014-07-10 22:39:43 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-08-25 06:50:35 +02:00
|
|
|
return fmt.Errorf("Security Group not found")
|
2014-07-10 22:39:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:14:23 +02:00
|
|
|
func testAccCheckAWSSecurityGroupAttributes(group *ec2.SecurityGroupInfo) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
|
|
|
p := ec2.IPPerm{
|
2014-07-16 18:01:56 +02:00
|
|
|
FromPort: 80,
|
|
|
|
ToPort: 8000,
|
|
|
|
Protocol: "tcp",
|
2014-07-28 19:13:50 +02:00
|
|
|
SourceIPs: []string{"10.0.0.0/8"},
|
2014-07-16 17:14:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if group.Name != "terraform_acceptance_test_example" {
|
|
|
|
return fmt.Errorf("Bad name: %s", group.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if group.Description != "Used in the terraform acceptance tests" {
|
|
|
|
return fmt.Errorf("Bad description: %s", group.Description)
|
|
|
|
}
|
|
|
|
|
2014-09-30 23:19:16 +02:00
|
|
|
if len(group.IPPerms) == 0 {
|
|
|
|
return fmt.Errorf("No IPPerms")
|
|
|
|
}
|
|
|
|
|
2014-07-16 17:14:23 +02:00
|
|
|
// Compare our ingress
|
|
|
|
if !reflect.DeepEqual(group.IPPerms[0], p) {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
group.IPPerms[0],
|
|
|
|
p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 23:07:01 +02:00
|
|
|
func TestAccAWSSecurityGroup_tags(t *testing.T) {
|
|
|
|
var group ec2.SecurityGroupInfo
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSSecurityGroupDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigTags,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.foo", &group),
|
|
|
|
testAccCheckTags(&group.Tags, "foo", "bar"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSSecurityGroupConfigTagsUpdate,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSSecurityGroupExists("aws_security_group.foo", &group),
|
|
|
|
testAccCheckTags(&group.Tags, "foo", ""),
|
|
|
|
testAccCheckTags(&group.Tags, "bar", "baz"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-08-20 20:18:00 +02:00
|
|
|
func testAccCheckAWSSecurityGroupAttributesChanged(group *ec2.SecurityGroupInfo) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
|
|
|
p := []ec2.IPPerm{
|
|
|
|
ec2.IPPerm{
|
|
|
|
FromPort: 80,
|
|
|
|
ToPort: 9000,
|
|
|
|
Protocol: "tcp",
|
|
|
|
SourceIPs: []string{"10.0.0.0/8"},
|
|
|
|
},
|
|
|
|
ec2.IPPerm{
|
|
|
|
FromPort: 80,
|
2014-08-21 20:58:55 +02:00
|
|
|
ToPort: 8000,
|
2014-08-20 20:18:00 +02:00
|
|
|
Protocol: "tcp",
|
2014-08-21 20:58:55 +02:00
|
|
|
SourceIPs: []string{"0.0.0.0/0", "10.0.0.0/8"},
|
2014-08-20 20:18:00 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if group.Name != "terraform_acceptance_test_example" {
|
|
|
|
return fmt.Errorf("Bad name: %s", group.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
if group.Description != "Used in the terraform acceptance tests" {
|
|
|
|
return fmt.Errorf("Bad description: %s", group.Description)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Compare our ingress
|
|
|
|
if len(group.IPPerms) != 2 {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
group.IPPerms,
|
|
|
|
p)
|
|
|
|
}
|
|
|
|
|
2014-08-21 20:58:55 +02:00
|
|
|
if group.IPPerms[0].ToPort == 8000 {
|
2014-08-20 20:18:00 +02:00
|
|
|
group.IPPerms[1], group.IPPerms[0] =
|
|
|
|
group.IPPerms[0], group.IPPerms[1]
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(group.IPPerms, p) {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
group.IPPerms,
|
|
|
|
p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-10 22:39:43 +02:00
|
|
|
const testAccAWSSecurityGroupConfig = `
|
|
|
|
resource "aws_security_group" "web" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
2014-07-10 22:39:43 +02:00
|
|
|
}
|
|
|
|
`
|
2014-07-17 19:03:15 +02:00
|
|
|
|
2014-08-20 20:18:00 +02:00
|
|
|
const testAccAWSSecurityGroupConfigChange = `
|
|
|
|
resource "aws_security_group" "web" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 9000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["0.0.0.0/0", "10.0.0.0/8"]
|
|
|
|
}
|
2014-08-20 20:18:00 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2014-09-30 23:19:16 +02:00
|
|
|
const testAccAWSSecurityGroupConfigSelf = `
|
|
|
|
resource "aws_security_group" "web" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
self = true
|
|
|
|
}
|
2014-09-30 23:19:16 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2014-07-17 19:03:15 +02:00
|
|
|
const testAccAWSSecurityGroupConfigVpc = `
|
|
|
|
resource "aws_vpc" "foo" {
|
2014-12-12 23:21:20 +01:00
|
|
|
cidr_block = "10.1.0.0/16"
|
2014-07-17 19:03:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_security_group" "web" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
vpc_id = "${aws_vpc.foo.id}"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
2014-07-17 19:03:15 +02:00
|
|
|
}
|
|
|
|
`
|
2014-07-29 18:06:28 +02:00
|
|
|
|
|
|
|
const testAccAWSSecurityGroupConfigMultiIngress = `
|
|
|
|
resource "aws_security_group" "worker" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example_1"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
2014-07-29 18:06:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_security_group" "web" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example_2"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 22
|
|
|
|
to_port = 22
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 800
|
|
|
|
to_port = 800
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
security_groups = ["${aws_security_group.worker.id}"]
|
|
|
|
}
|
2014-07-29 18:06:28 +02:00
|
|
|
}
|
|
|
|
`
|
2014-10-14 23:07:01 +02:00
|
|
|
|
|
|
|
const testAccAWSSecurityGroupConfigTags = `
|
|
|
|
resource "aws_security_group" "foo" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
|
|
|
|
|
|
|
tags {
|
|
|
|
foo = "bar"
|
|
|
|
}
|
2014-10-14 23:07:01 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccAWSSecurityGroupConfigTagsUpdate = `
|
|
|
|
resource "aws_security_group" "foo" {
|
2014-12-12 23:21:20 +01:00
|
|
|
name = "terraform_acceptance_test_example"
|
|
|
|
description = "Used in the terraform acceptance tests"
|
|
|
|
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 8000
|
|
|
|
cidr_blocks = ["10.0.0.0/8"]
|
|
|
|
}
|
|
|
|
|
|
|
|
tags {
|
|
|
|
bar = "baz"
|
|
|
|
}
|
2014-10-14 23:07:01 +02:00
|
|
|
}
|
|
|
|
`
|