2014-07-15 00:48:22 +02:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-12-22 00:41:55 +01:00
|
|
|
"math/rand"
|
2014-07-15 00:48:22 +02:00
|
|
|
"reflect"
|
2015-07-22 14:26:40 +02:00
|
|
|
"regexp"
|
2014-12-16 15:21:25 +01:00
|
|
|
"sort"
|
2014-07-15 00:48:22 +02:00
|
|
|
"testing"
|
2015-12-22 00:41:55 +01:00
|
|
|
"time"
|
2014-07-15 00:48:22 +02:00
|
|
|
|
2015-06-03 20:36:57 +02:00
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
"github.com/aws/aws-sdk-go/service/elb"
|
2016-01-09 01:15:06 +01:00
|
|
|
"github.com/hashicorp/terraform/helper/acctest"
|
2014-07-15 00:48:22 +02:00
|
|
|
"github.com/hashicorp/terraform/helper/resource"
|
|
|
|
"github.com/hashicorp/terraform/terraform"
|
|
|
|
)
|
|
|
|
|
2014-07-16 23:02:47 +02:00
|
|
|
func TestAccAWSELB_basic(t *testing.T) {
|
2015-03-02 16:44:06 +01:00
|
|
|
var conf elb.LoadBalancerDescription
|
2014-07-15 00:48:22 +02:00
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributes(&conf),
|
2016-01-10 00:15:57 +01:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.#", "3"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-16 15:21:25 +01:00
|
|
|
"aws_elb.bar", "availability_zones.2487133097", "us-west-2a"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-16 15:21:25 +01:00
|
|
|
"aws_elb.bar", "availability_zones.221770259", "us-west-2b"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-16 15:21:25 +01:00
|
|
|
"aws_elb.bar", "availability_zones.2050015877", "us-west-2c"),
|
2016-01-10 00:15:57 +01:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "subnets.#", "3"),
|
|
|
|
// NOTE: Subnet IDs are different across AWS accounts and cannot be checked.
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_elb.bar", "listener.206423021.instance_port", "8000"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_elb.bar", "listener.206423021.instance_protocol", "http"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_elb.bar", "listener.206423021.lb_port", "80"),
|
2014-07-16 23:02:47 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2014-12-12 23:21:20 +01:00
|
|
|
"aws_elb.bar", "listener.206423021.lb_protocol", "http"),
|
2014-12-10 07:07:08 +01:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "cross_zone_load_balancing", "true"),
|
2014-07-16 23:02:47 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-07-01 08:24:53 +02:00
|
|
|
func TestAccAWSELB_fullCharacterRange(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
|
2015-12-22 14:41:24 +01:00
|
|
|
lbName := fmt.Sprintf("Tf-%d",
|
2015-12-22 00:41:55 +01:00
|
|
|
rand.New(rand.NewSource(time.Now().UnixNano())).Int())
|
|
|
|
|
2015-07-01 08:24:53 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2015-12-22 00:41:55 +01:00
|
|
|
Config: fmt.Sprintf(testAccAWSELBFullRangeOfCharacters, lbName),
|
2015-07-01 08:24:53 +02:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.foo", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
2015-12-22 00:41:55 +01:00
|
|
|
"aws_elb.foo", "name", lbName),
|
2015-07-01 08:24:53 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-11-04 18:50:34 +01:00
|
|
|
func TestAccAWSELB_AccessLogs(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBAccessLogs,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.foo", &conf),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBAccessLogsOn,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.foo", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.foo", "access_logs.#", "1"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.foo", "access_logs.1713209538.bucket", "terraform-access-logs-bucket"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.foo", "access_logs.1713209538.interval", "5"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBAccessLogs,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.foo", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.foo", "access_logs.#", "0"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-07-22 14:26:40 +02:00
|
|
|
func TestAccAWSELB_generatedName(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
generatedNameRegexp := regexp.MustCompile("^tf-lb-")
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBGeneratedName,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.foo", &conf),
|
|
|
|
resource.TestMatchResourceAttr(
|
|
|
|
"aws_elb.foo", "name", generatedNameRegexp),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-01-09 23:30:11 +01:00
|
|
|
func TestAccAWSELB_availabilityZones(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.#", "3"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.2487133097", "us-west-2a"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.221770259", "us-west-2b"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.2050015877", "us-west-2c"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig_AvailabilityZonesUpdate,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.#", "2"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.2487133097", "us-west-2a"),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "availability_zones.221770259", "us-west-2b"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-03-24 19:37:42 +01:00
|
|
|
func TestAccAWSELB_tags(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
var td elb.TagDescription
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributes(&conf),
|
|
|
|
testAccLoadTags(&conf, &td),
|
|
|
|
testAccCheckELBTags(&td.Tags, "bar", "baz"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig_TagUpdate,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributes(&conf),
|
|
|
|
testAccLoadTags(&conf, &td),
|
|
|
|
testAccCheckELBTags(&td.Tags, "foo", "bar"),
|
|
|
|
testAccCheckELBTags(&td.Tags, "new", "type"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-11-12 22:15:47 +01:00
|
|
|
func TestAccAWSELB_iam_server_cert(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
// var td elb.TagDescription
|
|
|
|
testCheck := func(*terraform.State) error {
|
|
|
|
if len(conf.ListenerDescriptions) != 1 {
|
|
|
|
return fmt.Errorf(
|
|
|
|
"TestAccAWSELB_iam_server_cert expected 1 listener, got %d",
|
|
|
|
len(conf.ListenerDescriptions))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
2016-01-09 01:15:06 +01:00
|
|
|
Config: testAccELBIAMServerCertConfig(
|
|
|
|
fmt.Sprintf("tf-acctest-%s", acctest.RandString(10))),
|
2015-11-12 22:15:47 +01:00
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testCheck,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-03-24 19:37:42 +01:00
|
|
|
func testAccLoadTags(conf *elb.LoadBalancerDescription, td *elb.TagDescription) resource.TestCheckFunc {
|
|
|
|
return func(s *terraform.State) error {
|
|
|
|
conn := testAccProvider.Meta().(*AWSClient).elbconn
|
|
|
|
|
|
|
|
describe, err := conn.DescribeTags(&elb.DescribeTagsInput{
|
2015-04-14 23:41:36 +02:00
|
|
|
LoadBalancerNames: []*string{conf.LoadBalancerName},
|
2015-03-24 19:37:42 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(describe.TagDescriptions) > 0 {
|
2015-04-14 23:41:36 +02:00
|
|
|
*td = *describe.TagDescriptions[0]
|
2015-03-24 19:37:42 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-16 23:02:47 +02:00
|
|
|
func TestAccAWSELB_InstanceAttaching(t *testing.T) {
|
2015-03-02 16:44:06 +01:00
|
|
|
var conf elb.LoadBalancerDescription
|
2014-07-16 23:02:47 +02:00
|
|
|
|
|
|
|
testCheckInstanceAttached := func(count int) resource.TestCheckFunc {
|
|
|
|
return func(*terraform.State) error {
|
|
|
|
if len(conf.Instances) != count {
|
|
|
|
return fmt.Errorf("instance count does not match")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributes(&conf),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigNewInstance,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testCheckInstanceAttached(1),
|
2014-07-15 00:48:22 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-22 00:17:17 +02:00
|
|
|
func TestAccAWSELBUpdate_Listener(t *testing.T) {
|
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributes(&conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "listener.206423021.instance_port", "8000"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigListener_update,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "listener.3931999347.instance_port", "8080"),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-30 16:15:22 +02:00
|
|
|
func TestAccAWSELB_HealthCheck(t *testing.T) {
|
2015-03-02 16:44:06 +01:00
|
|
|
var conf elb.LoadBalancerDescription
|
2014-07-30 16:15:22 +02:00
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigHealthCheck,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
testAccCheckAWSELBAttributesHealthCheck(&conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.healthy_threshold", "5"),
|
2014-07-30 16:15:22 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.unhealthy_threshold", "5"),
|
2014-07-30 16:15:22 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.target", "HTTP:8000/"),
|
2014-07-30 16:15:22 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.timeout", "30"),
|
2014-07-30 16:15:22 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.interval", "60"),
|
2014-07-30 16:15:22 +02:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2015-02-03 04:25:54 +01:00
|
|
|
|
|
|
|
func TestAccAWSELBUpdate_HealthCheck(t *testing.T) {
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigHealthCheck,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.healthy_threshold", "5"),
|
2015-02-03 04:25:54 +01:00
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigHealthCheck_update,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
2016-02-09 08:08:35 +01:00
|
|
|
"aws_elb.bar", "health_check.0.healthy_threshold", "10"),
|
2015-02-03 04:25:54 +01:00
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-22 08:44:24 +02:00
|
|
|
func TestAccAWSELB_Timeout(t *testing.T) {
|
2015-04-13 22:14:26 +02:00
|
|
|
var conf elb.LoadBalancerDescription
|
|
|
|
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigIdleTimeout,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
testAccCheckAWSELBExists("aws_elb.bar", &conf),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "idle_timeout", "200",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-22 08:44:24 +02:00
|
|
|
func TestAccAWSELBUpdate_Timeout(t *testing.T) {
|
2015-04-13 22:14:26 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigIdleTimeout,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "idle_timeout", "200",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigIdleTimeout_update,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "idle_timeout", "400",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-22 08:44:24 +02:00
|
|
|
func TestAccAWSELB_ConnectionDraining(t *testing.T) {
|
2015-04-13 22:14:26 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigConnectionDraining,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining", "true",
|
|
|
|
),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining_timeout", "400",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-22 08:44:24 +02:00
|
|
|
func TestAccAWSELBUpdate_ConnectionDraining(t *testing.T) {
|
2015-04-13 22:14:26 +02:00
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigConnectionDraining,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining", "true",
|
|
|
|
),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining_timeout", "400",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigConnectionDraining_update_timeout,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining", "true",
|
|
|
|
),
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining_timeout", "600",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigConnectionDraining_update_disable,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "connection_draining", "false",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-04-23 21:46:29 +02:00
|
|
|
func TestAccAWSELB_SecurityGroups(t *testing.T) {
|
|
|
|
resource.Test(t, resource.TestCase{
|
|
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
|
|
Providers: testAccProviders,
|
|
|
|
CheckDestroy: testAccCheckAWSELBDestroy,
|
|
|
|
Steps: []resource.TestStep{
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfig,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
2016-01-25 18:05:22 +01:00
|
|
|
// ELBs get a default security group
|
2015-04-23 21:46:29 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
2016-01-25 18:05:22 +01:00
|
|
|
"aws_elb.bar", "security_groups.#", "1",
|
2015-04-23 21:46:29 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
resource.TestStep{
|
|
|
|
Config: testAccAWSELBConfigSecurityGroups,
|
|
|
|
Check: resource.ComposeTestCheckFunc(
|
2016-01-25 18:05:22 +01:00
|
|
|
// Count should still be one as we swap in a custom security group
|
2015-04-23 21:46:29 +02:00
|
|
|
resource.TestCheckResourceAttr(
|
|
|
|
"aws_elb.bar", "security_groups.#", "1",
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-06-05 17:12:32 +02:00
|
|
|
// Unit test for listeners hash
|
|
|
|
func TestResourceAwsElbListenerHash(t *testing.T) {
|
|
|
|
cases := map[string]struct {
|
|
|
|
Left map[string]interface{}
|
|
|
|
Right map[string]interface{}
|
|
|
|
Match bool
|
|
|
|
}{
|
|
|
|
"protocols are case insensitive": {
|
|
|
|
map[string]interface{}{
|
|
|
|
"instance_port": 80,
|
|
|
|
"instance_protocol": "TCP",
|
|
|
|
"lb_port": 80,
|
|
|
|
"lb_protocol": "TCP",
|
|
|
|
},
|
|
|
|
map[string]interface{}{
|
|
|
|
"instance_port": 80,
|
|
|
|
"instance_protocol": "Tcp",
|
|
|
|
"lb_port": 80,
|
|
|
|
"lb_protocol": "tcP",
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for tn, tc := range cases {
|
|
|
|
leftHash := resourceAwsElbListenerHash(tc.Left)
|
|
|
|
rightHash := resourceAwsElbListenerHash(tc.Right)
|
2015-10-08 14:48:04 +02:00
|
|
|
if leftHash == rightHash != tc.Match {
|
2015-06-05 17:12:32 +02:00
|
|
|
t.Fatalf("%s: expected match: %t, but did not get it", tn, tc.Match)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 23:08:33 +02:00
|
|
|
func TestResourceAWSELB_validateElbNameCannotBeginWithHyphen(t *testing.T) {
|
2015-09-21 23:00:51 +02:00
|
|
|
var elbName = "-Testing123"
|
|
|
|
_, errors := validateElbName(elbName, "SampleKey")
|
|
|
|
|
|
|
|
if len(errors) != 1 {
|
|
|
|
t.Fatalf("Expected the ELB Name to trigger a validation error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 23:08:33 +02:00
|
|
|
func TestResourceAWSELB_validateElbNameCannotBeLongerThen32Characters(t *testing.T) {
|
2015-09-21 23:00:51 +02:00
|
|
|
var elbName = "Testing123dddddddddddddddddddvvvv"
|
|
|
|
_, errors := validateElbName(elbName, "SampleKey")
|
|
|
|
|
|
|
|
if len(errors) != 1 {
|
|
|
|
t.Fatalf("Expected the ELB Name to trigger a validation error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 23:08:33 +02:00
|
|
|
func TestResourceAWSELB_validateElbNameCannotHaveSpecialCharacters(t *testing.T) {
|
2015-09-21 23:00:51 +02:00
|
|
|
var elbName = "Testing123%%"
|
|
|
|
_, errors := validateElbName(elbName, "SampleKey")
|
|
|
|
|
|
|
|
if len(errors) != 1 {
|
|
|
|
t.Fatalf("Expected the ELB Name to trigger a validation error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-21 23:08:33 +02:00
|
|
|
func TestResourceAWSELB_validateElbNameCannotEndWithHyphen(t *testing.T) {
|
2015-09-21 23:00:51 +02:00
|
|
|
var elbName = "Testing123-"
|
|
|
|
_, errors := validateElbName(elbName, "SampleKey")
|
|
|
|
|
|
|
|
if len(errors) != 1 {
|
|
|
|
t.Fatalf("Expected the ELB Name to trigger a validation error")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:48:22 +02:00
|
|
|
func testAccCheckAWSELBDestroy(s *terraform.State) error {
|
2014-11-21 17:58:34 +01:00
|
|
|
conn := testAccProvider.Meta().(*AWSClient).elbconn
|
2014-07-15 00:48:22 +02:00
|
|
|
|
2014-09-17 02:44:42 +02:00
|
|
|
for _, rs := range s.RootModule().Resources {
|
2014-07-15 00:48:22 +02:00
|
|
|
if rs.Type != "aws_elb" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2015-04-14 23:41:36 +02:00
|
|
|
describe, err := conn.DescribeLoadBalancers(&elb.DescribeLoadBalancersInput{
|
|
|
|
LoadBalancerNames: []*string{aws.String(rs.Primary.ID)},
|
2014-07-15 00:48:22 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if err == nil {
|
2015-03-02 16:44:06 +01:00
|
|
|
if len(describe.LoadBalancerDescriptions) != 0 &&
|
|
|
|
*describe.LoadBalancerDescriptions[0].LoadBalancerName == rs.Primary.ID {
|
2014-07-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("ELB still exists")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify the error
|
2015-05-20 13:21:23 +02:00
|
|
|
providerErr, ok := err.(awserr.Error)
|
2014-07-15 00:48:22 +02:00
|
|
|
if !ok {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-12-22 14:41:24 +01:00
|
|
|
if providerErr.Code() != "LoadBalancerNotFound" {
|
2014-07-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("Unexpected error: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
func testAccCheckAWSELBAttributes(conf *elb.LoadBalancerDescription) resource.TestCheckFunc {
|
2014-07-15 00:48:22 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-12-16 15:21:25 +01:00
|
|
|
zones := []string{"us-west-2a", "us-west-2b", "us-west-2c"}
|
2015-04-14 23:41:36 +02:00
|
|
|
azs := make([]string, 0, len(conf.AvailabilityZones))
|
|
|
|
for _, x := range conf.AvailabilityZones {
|
|
|
|
azs = append(azs, *x)
|
|
|
|
}
|
|
|
|
sort.StringSlice(azs).Sort()
|
|
|
|
if !reflect.DeepEqual(azs, zones) {
|
2014-07-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("bad availability_zones")
|
|
|
|
}
|
|
|
|
|
|
|
|
l := elb.Listener{
|
2015-07-28 22:29:46 +02:00
|
|
|
InstancePort: aws.Int64(int64(8000)),
|
2015-03-02 16:44:06 +01:00
|
|
|
InstanceProtocol: aws.String("HTTP"),
|
2015-07-28 22:29:46 +02:00
|
|
|
LoadBalancerPort: aws.Int64(int64(80)),
|
2015-03-02 16:44:06 +01:00
|
|
|
Protocol: aws.String("HTTP"),
|
2014-07-15 00:48:22 +02:00
|
|
|
}
|
2014-07-15 00:57:04 +02:00
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
if !reflect.DeepEqual(conf.ListenerDescriptions[0].Listener, &l) {
|
2014-07-15 14:49:40 +02:00
|
|
|
return fmt.Errorf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
2015-03-02 16:44:06 +01:00
|
|
|
conf.ListenerDescriptions[0].Listener,
|
2014-07-15 14:49:40 +02:00
|
|
|
l)
|
2014-07-15 00:48:22 +02:00
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
if *conf.DNSName == "" {
|
2014-07-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("empty dns_name")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
func testAccCheckAWSELBAttributesHealthCheck(conf *elb.LoadBalancerDescription) resource.TestCheckFunc {
|
2014-07-30 16:15:22 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-12-16 15:21:25 +01:00
|
|
|
zones := []string{"us-west-2a", "us-west-2b", "us-west-2c"}
|
2015-04-14 23:41:36 +02:00
|
|
|
azs := make([]string, 0, len(conf.AvailabilityZones))
|
|
|
|
for _, x := range conf.AvailabilityZones {
|
|
|
|
azs = append(azs, *x)
|
|
|
|
}
|
|
|
|
sort.StringSlice(azs).Sort()
|
|
|
|
if !reflect.DeepEqual(azs, zones) {
|
2014-07-30 16:15:22 +02:00
|
|
|
return fmt.Errorf("bad availability_zones")
|
|
|
|
}
|
|
|
|
|
2015-04-14 23:41:36 +02:00
|
|
|
check := &elb.HealthCheck{
|
2015-07-28 22:29:46 +02:00
|
|
|
Timeout: aws.Int64(int64(30)),
|
|
|
|
UnhealthyThreshold: aws.Int64(int64(5)),
|
|
|
|
HealthyThreshold: aws.Int64(int64(5)),
|
|
|
|
Interval: aws.Int64(int64(60)),
|
2015-03-02 16:44:06 +01:00
|
|
|
Target: aws.String("HTTP:8000/"),
|
2014-07-30 16:15:22 +02:00
|
|
|
}
|
|
|
|
|
2015-04-14 23:41:36 +02:00
|
|
|
if !reflect.DeepEqual(conf.HealthCheck, check) {
|
2014-07-30 16:15:22 +02:00
|
|
|
return fmt.Errorf(
|
|
|
|
"Got:\n\n%#v\n\nExpected:\n\n%#v\n",
|
|
|
|
conf.HealthCheck,
|
|
|
|
check)
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
if *conf.DNSName == "" {
|
2014-07-30 16:15:22 +02:00
|
|
|
return fmt.Errorf("empty dns_name")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
func testAccCheckAWSELBExists(n string, res *elb.LoadBalancerDescription) resource.TestCheckFunc {
|
2014-07-15 00:48:22 +02:00
|
|
|
return func(s *terraform.State) error {
|
2014-09-17 02:44:42 +02:00
|
|
|
rs, ok := s.RootModule().Resources[n]
|
2014-07-15 00:48:22 +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-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("No ELB ID is set")
|
|
|
|
}
|
|
|
|
|
2014-11-21 17:58:34 +01:00
|
|
|
conn := testAccProvider.Meta().(*AWSClient).elbconn
|
2014-07-15 00:48:22 +02:00
|
|
|
|
2015-04-14 23:41:36 +02:00
|
|
|
describe, err := conn.DescribeLoadBalancers(&elb.DescribeLoadBalancersInput{
|
|
|
|
LoadBalancerNames: []*string{aws.String(rs.Primary.ID)},
|
2014-07-15 00:48:22 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-03-02 16:44:06 +01:00
|
|
|
if len(describe.LoadBalancerDescriptions) != 1 ||
|
|
|
|
*describe.LoadBalancerDescriptions[0].LoadBalancerName != rs.Primary.ID {
|
2014-07-15 00:48:22 +02:00
|
|
|
return fmt.Errorf("ELB not found")
|
|
|
|
}
|
|
|
|
|
2015-04-14 23:41:36 +02:00
|
|
|
*res = *describe.LoadBalancerDescriptions[0]
|
2014-07-15 00:48:22 +02:00
|
|
|
|
2015-11-06 18:18:57 +01:00
|
|
|
// Confirm source_security_group_id for ELBs in a VPC
|
|
|
|
// See https://github.com/hashicorp/terraform/pull/3780
|
|
|
|
if res.VPCId != nil {
|
|
|
|
sgid := rs.Primary.Attributes["source_security_group_id"]
|
|
|
|
if sgid == "" {
|
|
|
|
return fmt.Errorf("Expected to find source_security_group_id for ELB, but was empty")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-15 00:48:22 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const testAccAWSELBConfig = `
|
|
|
|
resource "aws_elb" "bar" {
|
2014-07-16 23:02:47 +02:00
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
2014-07-15 00:48:22 +02:00
|
|
|
|
2014-07-15 00:57:04 +02:00
|
|
|
listener {
|
2014-07-15 00:48:22 +02:00
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
2015-06-05 17:12:32 +02:00
|
|
|
// Protocol should be case insensitive
|
|
|
|
lb_protocol = "HttP"
|
2014-07-15 00:48:22 +02:00
|
|
|
}
|
2014-07-15 00:57:04 +02:00
|
|
|
|
2015-03-24 19:37:42 +01:00
|
|
|
tags {
|
|
|
|
bar = "baz"
|
|
|
|
}
|
|
|
|
|
|
|
|
cross_zone_load_balancing = true
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2015-07-01 08:24:53 +02:00
|
|
|
const testAccAWSELBFullRangeOfCharacters = `
|
|
|
|
resource "aws_elb" "foo" {
|
2015-12-22 00:41:55 +01:00
|
|
|
name = "%s"
|
2015-07-01 08:24:53 +02:00
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2015-11-04 18:50:34 +01:00
|
|
|
const testAccAWSELBAccessLogs = `
|
|
|
|
resource "aws_elb" "foo" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
const testAccAWSELBAccessLogsOn = `
|
|
|
|
# an S3 bucket configured for Access logs
|
|
|
|
# The 797873946194 is the AWS ID for us-west-2, so this test
|
|
|
|
# must be ran in us-west-2
|
|
|
|
resource "aws_s3_bucket" "acceslogs_bucket" {
|
|
|
|
bucket = "terraform-access-logs-bucket"
|
|
|
|
acl = "private"
|
|
|
|
force_destroy = true
|
|
|
|
policy = <<EOF
|
|
|
|
{
|
|
|
|
"Id": "Policy1446577137248",
|
|
|
|
"Statement": [
|
|
|
|
{
|
|
|
|
"Action": "s3:PutObject",
|
|
|
|
"Effect": "Allow",
|
|
|
|
"Principal": {
|
|
|
|
"AWS": "arn:aws:iam::797873946194:root"
|
|
|
|
},
|
|
|
|
"Resource": "arn:aws:s3:::terraform-access-logs-bucket/*",
|
|
|
|
"Sid": "Stmt1446575236270"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"Version": "2012-10-17"
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_elb" "foo" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
access_logs {
|
|
|
|
interval = 5
|
|
|
|
bucket = "${aws_s3_bucket.acceslogs_bucket.bucket}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2015-07-22 14:26:40 +02:00
|
|
|
const testAccAWSELBGeneratedName = `
|
|
|
|
resource "aws_elb" "foo" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2016-01-09 23:30:11 +01:00
|
|
|
const testAccAWSELBConfig_AvailabilityZonesUpdate = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2015-03-24 19:37:42 +01:00
|
|
|
const testAccAWSELBConfig_TagUpdate = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
tags {
|
|
|
|
foo = "bar"
|
|
|
|
new = "type"
|
|
|
|
}
|
|
|
|
|
2014-12-10 07:07:08 +01:00
|
|
|
cross_zone_load_balancing = true
|
2014-07-15 00:48:22 +02:00
|
|
|
}
|
|
|
|
`
|
2014-07-16 23:02:47 +02:00
|
|
|
|
|
|
|
const testAccAWSELBConfigNewInstance = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
instances = ["${aws_instance.foo.id}"]
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_instance" "foo" {
|
|
|
|
# us-west-2
|
|
|
|
ami = "ami-043a5034"
|
|
|
|
instance_type = "t1.micro"
|
|
|
|
}
|
|
|
|
`
|
2014-07-30 16:15:22 +02:00
|
|
|
|
2014-08-11 01:09:05 +02:00
|
|
|
const testAccAWSELBConfigListenerSSLCertificateId = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
2014-10-02 04:19:36 +02:00
|
|
|
ssl_certificate_id = "%s"
|
2014-08-11 01:09:05 +02:00
|
|
|
lb_port = 443
|
|
|
|
lb_protocol = "https"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2014-07-30 16:15:22 +02:00
|
|
|
const testAccAWSELBConfigHealthCheck = `
|
|
|
|
resource "aws_elb" "bar" {
|
2015-02-19 00:18:51 +01:00
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
2014-07-30 16:15:22 +02:00
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
health_check {
|
|
|
|
healthy_threshold = 5
|
|
|
|
unhealthy_threshold = 5
|
|
|
|
target = "HTTP:8000/"
|
|
|
|
interval = 60
|
|
|
|
timeout = 30
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
2015-02-03 04:25:54 +01:00
|
|
|
|
|
|
|
const testAccAWSELBConfigHealthCheck_update = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
health_check {
|
|
|
|
healthy_threshold = 10
|
|
|
|
unhealthy_threshold = 5
|
|
|
|
target = "HTTP:8000/"
|
|
|
|
interval = 60
|
|
|
|
timeout = 30
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
2015-04-22 00:17:17 +02:00
|
|
|
|
|
|
|
const testAccAWSELBConfigListener_update = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8080
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
2015-04-22 08:38:19 +02:00
|
|
|
|
2015-04-13 22:14:26 +02:00
|
|
|
const testAccAWSELBConfigIdleTimeout = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
idle_timeout = 200
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccAWSELBConfigIdleTimeout_update = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
idle_timeout = 400
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccAWSELBConfigConnectionDraining = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
connection_draining = true
|
|
|
|
connection_draining_timeout = 400
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccAWSELBConfigConnectionDraining_update_timeout = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
connection_draining = true
|
2015-05-06 19:20:05 +02:00
|
|
|
connection_draining_timeout = 600
|
2015-04-13 22:14:26 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
const testAccAWSELBConfigConnectionDraining_update_disable = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
connection_draining = false
|
|
|
|
}
|
|
|
|
`
|
2015-04-23 21:46:29 +02:00
|
|
|
|
|
|
|
const testAccAWSELBConfigSecurityGroups = `
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "http"
|
|
|
|
lb_port = 80
|
|
|
|
lb_protocol = "http"
|
|
|
|
}
|
|
|
|
|
|
|
|
security_groups = ["${aws_security_group.bar.id}"]
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_security_group" "bar" {
|
|
|
|
ingress {
|
|
|
|
protocol = "tcp"
|
|
|
|
from_port = 80
|
|
|
|
to_port = 80
|
|
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
2015-11-12 22:15:47 +01:00
|
|
|
|
|
|
|
// This IAM Server config is lifted from
|
|
|
|
// builtin/providers/aws/resource_aws_iam_server_certificate_test.go
|
2016-01-09 01:15:06 +01:00
|
|
|
func testAccELBIAMServerCertConfig(certName string) string {
|
|
|
|
return fmt.Sprintf(`
|
2015-11-12 22:15:47 +01:00
|
|
|
resource "aws_iam_server_certificate" "test_cert" {
|
2016-01-09 01:15:06 +01:00
|
|
|
name = "%s"
|
2015-11-12 22:15:47 +01:00
|
|
|
certificate_body = <<EOF
|
|
|
|
-----BEGIN CERTIFICATE-----
|
|
|
|
MIIDCDCCAfACAQEwDQYJKoZIhvcNAQELBQAwgY4xCzAJBgNVBAYTAlVTMREwDwYD
|
|
|
|
VQQIDAhOZXcgWW9yazERMA8GA1UEBwwITmV3IFlvcmsxFjAUBgNVBAoMDUJhcmVm
|
|
|
|
b290IExhYnMxGDAWBgNVBAMMD0phc29uIEJlcmxpbnNreTEnMCUGCSqGSIb3DQEJ
|
|
|
|
ARYYamFzb25AYmFyZWZvb3Rjb2RlcnMuY29tMB4XDTE1MDYyMTA1MzcwNVoXDTE2
|
|
|
|
MDYyMDA1MzcwNVowgYgxCzAJBgNVBAYTAlVTMREwDwYDVQQIDAhOZXcgWW9yazEL
|
|
|
|
MAkGA1UEBwwCTlkxFjAUBgNVBAoMDUJhcmVmb290IExhYnMxGDAWBgNVBAMMD0ph
|
|
|
|
c29uIEJlcmxpbnNreTEnMCUGCSqGSIb3DQEJARYYamFzb25AYmFyZWZvb3Rjb2Rl
|
|
|
|
cnMuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD2AVGKRIx+EFM0kkg7
|
|
|
|
6GoJv9uy0biEDHB4phQBqnDIf8J8/gq9eVvQrR5jJC9Uz4zp5wG/oLZlGuF92/jD
|
|
|
|
bI/yS+DOAjrh30vN79Au74jGN2Cw8fIak40iDUwjZaczK2Gkna54XIO9pqMcbQ6Q
|
|
|
|
mLUkQXsqlJ7Q4X2kL3b9iMsXcQIDAQABMA0GCSqGSIb3DQEBCwUAA4IBAQCDGNvU
|
|
|
|
eioQMVPNlmmxW3+Rwo0Kl+/HtUOmqUDKUDvJnelxulBr7O8w75N/Z7h7+aBJCUkt
|
|
|
|
tz+DwATZswXtsal6TuzHHpAhpFql82jQZVE8OYkrX84XKRQpm8ZnbyZObMdXTJWk
|
|
|
|
ArC/rGVIWsvhlbgGM8zu7a3zbeuAESZ8Bn4ZbJxnoaRK8p36/alvzAwkgzSf3oUX
|
|
|
|
HtU4LrdunevBs6/CbKCWrxYcvNCy8EcmHitqCfQL5nxCCXpgf/Mw1vmIPTwbPSJq
|
|
|
|
oUkh5yjGRKzhh7QbG1TlFX6zUp4vb+UJn5+g4edHrqivRSjIqYrC45ygVMOABn21
|
|
|
|
hpMXOlZL+YXfR4Kp
|
|
|
|
-----END CERTIFICATE-----
|
|
|
|
EOF
|
|
|
|
|
|
|
|
certificate_chain = <<EOF
|
|
|
|
-----BEGIN CERTIFICATE-----
|
|
|
|
MIID8TCCAtmgAwIBAgIJAKX2xeCkfFcbMA0GCSqGSIb3DQEBCwUAMIGOMQswCQYD
|
|
|
|
VQQGEwJVUzERMA8GA1UECAwITmV3IFlvcmsxETAPBgNVBAcMCE5ldyBZb3JrMRYw
|
|
|
|
FAYDVQQKDA1CYXJlZm9vdCBMYWJzMRgwFgYDVQQDDA9KYXNvbiBCZXJsaW5za3kx
|
|
|
|
JzAlBgkqhkiG9w0BCQEWGGphc29uQGJhcmVmb290Y29kZXJzLmNvbTAeFw0xNTA2
|
|
|
|
MjEwNTM2MDZaFw0yNTA2MTgwNTM2MDZaMIGOMQswCQYDVQQGEwJVUzERMA8GA1UE
|
|
|
|
CAwITmV3IFlvcmsxETAPBgNVBAcMCE5ldyBZb3JrMRYwFAYDVQQKDA1CYXJlZm9v
|
|
|
|
dCBMYWJzMRgwFgYDVQQDDA9KYXNvbiBCZXJsaW5za3kxJzAlBgkqhkiG9w0BCQEW
|
|
|
|
GGphc29uQGJhcmVmb290Y29kZXJzLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEP
|
|
|
|
ADCCAQoCggEBAMteFbwfLz7NyQn3eDxxw22l1ZPBrzfPON0HOAq8nHat4kT4A2cI
|
|
|
|
45kCtxKMzCVoG84tXoX/rbjGkez7lz9lEfvEuSh+I+UqinFA/sefhcE63foVMZu1
|
|
|
|
2t6O3+utdxBvOYJwAQaiGW44x0h6fTyqDv6Gc5Ml0uoIVeMWPhT1MREoOcPDz1gb
|
|
|
|
Ep3VT2aqFULLJedP37qbzS4D04rn1tS7pcm3wYivRyjVNEvs91NsWEvvE1WtS2Cl
|
|
|
|
2RBt+ihXwq4UNB9UPYG75+FuRcQQvfqameyweyKT9qBmJLELMtYa/KTCYvSch4JY
|
|
|
|
YVPAPOlhFlO4BcTto/gpBes2WEAWZtE/jnECAwEAAaNQME4wHQYDVR0OBBYEFOna
|
|
|
|
aiYnm5583EY7FT/mXwTBuLZgMB8GA1UdIwQYMBaAFOnaaiYnm5583EY7FT/mXwTB
|
|
|
|
uLZgMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBABp/dKQ489CCzzB1
|
|
|
|
IX78p6RFAdda4e3lL6uVjeS3itzFIIiKvdf1/txhmsEeCEYz0El6aMnXLkpk7jAr
|
|
|
|
kCwlAOOz2R2hlA8k8opKTYX4IQQau8DATslUFAFOvRGOim/TD/Yuch+a/VF2VQKz
|
|
|
|
L2lUVi5Hjp9KvWe2HQYPjnJaZs/OKAmZQ4uP547dqFrTz6sWfisF1rJ60JH70cyM
|
|
|
|
qjZQp/xYHTZIB8TCPvLgtVIGFmd/VAHVBFW2p9IBwtSxBIsEPwYQOV3XbwhhmGIv
|
|
|
|
DWx5TpnEzH7ZM33RNbAKcdwOBxdRY+SI/ua5hYCm4QngAqY69lEuk4zXZpdDLPq1
|
|
|
|
qxxQx0E=
|
|
|
|
-----END CERTIFICATE-----
|
|
|
|
EOF
|
|
|
|
|
|
|
|
private_key = <<EOF
|
|
|
|
-----BEGIN RSA PRIVATE KEY-----
|
|
|
|
MIICXQIBAAKBgQD2AVGKRIx+EFM0kkg76GoJv9uy0biEDHB4phQBqnDIf8J8/gq9
|
|
|
|
eVvQrR5jJC9Uz4zp5wG/oLZlGuF92/jDbI/yS+DOAjrh30vN79Au74jGN2Cw8fIa
|
|
|
|
k40iDUwjZaczK2Gkna54XIO9pqMcbQ6QmLUkQXsqlJ7Q4X2kL3b9iMsXcQIDAQAB
|
|
|
|
AoGALmVBQ5p6BKx/hMKx7NqAZSZSAP+clQrji12HGGlUq/usanZfAC0LK+f6eygv
|
|
|
|
5QbfxJ1UrxdYTukq7dm2qOSooOMUuukWInqC6ztjdLwH70CKnl0bkNB3/NkW2VNc
|
|
|
|
32YiUuZCM9zaeBuEUclKNs+dhD2EeGdJF8KGntWGOTU/M4ECQQD9gdYb38PvaMdu
|
|
|
|
opM3sKJF5n9pMoLDleBpCGqq3nD3DFn0V6PHQAwn30EhRN+7BbUEpde5PmfoIdAR
|
|
|
|
uDlj/XPlAkEA+GyY1e4uU9rz+1K4ubxmtXTp9ZIR2LsqFy5L/MS5hqX2zq5GGq8g
|
|
|
|
jZYDxnxPEUrxaWQH4nh0qdu3skUBi4a0nQJBAKJaqLkpUd7eB/t++zHLWeHSgP7q
|
|
|
|
bny8XABod4f+9fICYwntpuJQzngqrxeTeIXaXdggLkxg/0LXhN4UUg0LoVECQQDE
|
|
|
|
Pi1h2dyY+37/CzLH7q+IKopjJneYqQmv9C+sxs70MgjM7liM3ckub9IdqrdfJr+c
|
|
|
|
DJw56APo5puvZNm6mbf1AkBVMDyfdOOyoHpJjrhmZWo6QqynujfwErrBYQ0sZQ3l
|
|
|
|
O57Z0RUNQ8DRyymhLd2t5nAHTfpcFA1sBeKE6CziLbZB
|
|
|
|
-----END RSA PRIVATE KEY-----
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
resource "aws_elb" "bar" {
|
|
|
|
availability_zones = ["us-west-2a", "us-west-2b", "us-west-2c"]
|
|
|
|
|
|
|
|
listener {
|
|
|
|
instance_port = 8000
|
|
|
|
instance_protocol = "https"
|
|
|
|
lb_port = 80
|
|
|
|
// Protocol should be case insensitive
|
|
|
|
lb_protocol = "HttPs"
|
|
|
|
ssl_certificate_id = "${aws_iam_server_certificate.test_cert.arn}"
|
|
|
|
}
|
|
|
|
|
|
|
|
tags {
|
|
|
|
bar = "baz"
|
|
|
|
}
|
|
|
|
|
|
|
|
cross_zone_load_balancing = true
|
|
|
|
}
|
2016-01-09 01:15:06 +01:00
|
|
|
`, certName)
|
|
|
|
}
|