2015-04-30 01:05:16 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/awslabs/aws-sdk-go/aws"
|
|
|
|
"github.com/awslabs/aws-sdk-go/service/ec2"
|
2015-05-04 00:35:01 +02:00
|
|
|
|
2015-04-30 01:05:16 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAccCustomerGateway(t *testing.T) {
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckCustomerGatewayDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCustomerGatewayConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckCustomerGateway(
|
|
|
|
"aws_customer_gateway.foo",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
2015-05-04 00:35:01 +02:00
|
|
|
Config: testAccCustomerGatewayConfigUpdateTags,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckCustomerGateway(
|
|
|
|
"aws_customer_gateway.foo",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccCustomerGatewayConfigForceReplace,
|
2015-04-30 01:05:16 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckCustomerGateway(
|
2015-05-04 00:35:01 +02:00
|
|
|
"aws_customer_gateway.foo",
|
2015-04-30 01:05:16 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckCustomerGatewayDestroy(s *terraform.State) error {
|
|
|
|
if len(s.RootModule().Resources) > 0 {
|
|
|
|
return fmt.Errorf("Expected all resources to be gone, but found: %#v", s.RootModule().Resources)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func testAccCheckCustomerGateway(gatewayResource string) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
|
|
|
rs, ok := s.RootModule().Resources[gatewayResource]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found: %s", gatewayResource)
|
|
|
|
}
|
|
|
|
|
|
|
|
if rs.Primary.ID == "" {
|
|
|
|
return fmt.Errorf("No ID is set")
|
|
|
|
}
|
|
|
|
|
|
|
|
gateway, ok := s.RootModule().Resources[gatewayResource]
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("Not found: %s", gatewayResource)
|
|
|
|
}
|
|
|
|
|
|
|
|
ec2conn := testAccProvider.Meta().(*AWSClient).ec2conn
|
|
|
|
gatewayFilter := &ec2.Filter{
|
|
|
|
Name: aws.String("customer-gateway-id"),
|
|
|
|
Values: []*string{aws.String(gateway.Primary.ID)},
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := ec2conn.DescribeCustomerGateways(&ec2.DescribeCustomerGatewaysInput{
|
|
|
|
Filters: []*ec2.Filter{gatewayFilter},
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccCustomerGatewayConfig = `
|
|
|
|
resource "aws_customer_gateway" "foo" {
|
|
|
|
bgp_asn = 60000
|
|
|
|
ip_address = "172.0.0.1"
|
2015-05-04 00:35:01 +02:00
|
|
|
type = "ipsec.1"
|
2015-04-30 01:05:16 +02:00
|
|
|
tags {
|
|
|
|
Name = "foo-gateway"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2015-05-04 00:35:01 +02:00
|
|
|
// Add the Another: "tag" tag.
|
|
|
|
const testAccCustomerGatewayConfigUpdateTags = `
|
2015-04-30 01:05:16 +02:00
|
|
|
resource "aws_customer_gateway" "foo" {
|
|
|
|
bgp_asn = 60000
|
|
|
|
ip_address = "172.0.0.1"
|
2015-05-04 00:35:01 +02:00
|
|
|
type = "ipsec.1"
|
2015-04-30 01:05:16 +02:00
|
|
|
tags {
|
|
|
|
Name = "foo-gateway"
|
2015-05-04 00:35:01 +02:00
|
|
|
Another = "tag"
|
2015-04-30 01:05:16 +02:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 00:35:01 +02:00
|
|
|
`
|
2015-04-30 01:05:16 +02:00
|
|
|
|
2015-05-04 00:35:01 +02:00
|
|
|
// Change the ip_address.
|
|
|
|
const testAccCustomerGatewayConfigForceReplace = `
|
|
|
|
resource "aws_customer_gateway" "foo" {
|
2015-04-30 01:05:16 +02:00
|
|
|
bgp_asn = 60000
|
2015-05-04 00:35:01 +02:00
|
|
|
ip_address = "172.10.10.1"
|
|
|
|
type = "ipsec.1"
|
2015-04-30 01:05:16 +02:00
|
|
|
tags {
|
|
|
|
Name = "foo-gateway"
|
2015-05-04 00:35:01 +02:00
|
|
|
Another = "tag"
|
2015-04-30 01:05:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|