Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix aws elb hosted zone id add nlb ids #8384

Closed
Closed
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 49 additions & 25 deletions aws/data_source_aws_elb_hosted_zone_id.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,43 @@ package aws
import (
"fmt"

"github.com/aws/aws-sdk-go/service/elbv2"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/helper/validation"
)

// See http://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
// See https://docs.aws.amazon.com/general/latest/gr/rande.html#elb_region
// See https://docs.amazonaws.cn/en_us/general/latest/gr/rande.html#elb_region
var elbHostedZoneIdPerRegionMap = map[string]string{
"ap-east-1": "Z3DQVH9N71FHZ0",
"ap-northeast-1": "Z14GRHDCWA56QT",
"ap-northeast-2": "ZWKZPGTI48KDX",
"ap-northeast-3": "Z5LXEXXYW11ES",
"ap-south-1": "ZP97RAFLXTNZK",
"ap-southeast-1": "Z1LMS91P8CMLE5",
"ap-southeast-2": "Z1GM3OXH4ZPM65",
"ca-central-1": "ZQSVJUPU6J1EY",
"cn-north-1": "Z3BX2TMKNYI13Y",
"cn-northwest-1": "Z3BX2TMKNYI13Y",
"eu-central-1": "Z215JYRZR1TBD5",
"eu-north-1": "Z23TAZ6LKFMNIO",
"eu-west-1": "Z32O12XQLNTSW2",
"eu-west-2": "ZHURV8PSTC4K8",
"eu-west-3": "Z3Q77PNBQS71R4",
"me-south-1": "ZS929ML54UICD",
"sa-east-1": "Z2P70J7HTTTPLU",
"us-east-1": "Z35SXDOTRQ7X7K",
"us-east-2": "Z3AADJGX6KTTL2",
"us-west-1": "Z368ELLRRE2KJ0",
"us-west-2": "Z1H1FL5HABSF5",
// First index is Application/Classic LB id's, second index is NLB id's
var elbHostedZoneIdPerRegionMap = map[string][]string{
"ap-east-1": {"Z3DQVH9N71FHZ0", "Z12Y7K3UBGUAD1"},
"ap-northeast-1": {"Z14GRHDCWA56QT", "Z31USIVHYNEOWT"},
"ap-northeast-2": {"ZWKZPGTI48KDX", "ZIBE1TIR4HY56"},
"ap-northeast-3": {"Z5LXEXXYW11ES", "Z1GWIQ4HH19I5X"},
"ap-south-1": {"ZP97RAFLXTNZK", "ZVDDRBQ08TROA"},
"ap-southeast-1": {"Z1LMS91P8CMLE5", "ZKVM4W9LS7TM"},
"ap-southeast-2": {"Z1GM3OXH4ZPM65", "ZCT6FZBF4DROD"},
"ca-central-1": {"ZQSVJUPU6J1EY", "Z2EPGBW3API2WT"},
"cn-north-1": {"3BX2TMKNYI13Y", "Z3QFB96KMJ7ED6"},
"cn-northwest-1": {"Z3BX2TMKNYI13Y", "ZQEIKTCZ8352D"},
"eu-central-1": {"Z215JYRZR1TBD5", "Z3F0SRJ5LGBH90"},
"eu-north-1": {"Z23TAZ6LKFMNIO", "Z1UDT6IFJ4EJM"},
"eu-west-1": {"Z32O12XQLNTSW2", "Z2IFOLAFXWLO4F"},
"eu-west-2": {"ZHURV8PSTC4K8", "ZD4D7Y8KGAS4G"},
"eu-west-3": {"Z3Q77PNBQS71R4", "Z1CMS0P5QUZ6D5"},
"me-south-1": {"ZS929ML54UICD", "Z3QSRYVP46NYYV"},
"sa-east-1": {"Z2P70J7HTTTPLU", "ZTK26PT1VY4CU"},
"us-east-1": {"Z35SXDOTRQ7X7K", "Z26RNL4JYFTOTI"},
"us-east-2": {"Z3AADJGX6KTTL2", "ZLMOA37VPKANP"},
"us-west-1": {"Z368ELLRRE2KJ0", "Z24FKFUX50B4VW"},
"us-west-2": {"Z1H1FL5HABSF5", "Z18D5FSROUN65G"},
}

var validElbTypes = []string{
// elbv2 and elb don't have an option for classic
elbv2.LoadBalancerTypeEnumApplication,
"classic",
elbv2.LoadBalancerTypeEnumNetwork,
}

func dataSourceAwsElbHostedZoneId() *schema.Resource {
Expand All @@ -41,6 +51,11 @@ func dataSourceAwsElbHostedZoneId() *schema.Resource {
Type: schema.TypeString,
Optional: true,
},
"elb_type": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringInSlice(validElbTypes, false),
},
},
}
}
Expand All @@ -50,9 +65,18 @@ func dataSourceAwsElbHostedZoneIdRead(d *schema.ResourceData, meta interface{})
if v, ok := d.GetOk("region"); ok {
region = v.(string)
}

var i int
jukie marked this conversation as resolved.
Show resolved Hide resolved
if v, ok := d.GetOk("elb_type"); ok {
if v.(string) == "classic" || v.(string) == "application" {
i = 0
} else if v.(string) == "network" {
i = 1
}
} else {
i = 0
}
if zoneId, ok := elbHostedZoneIdPerRegionMap[region]; ok {
d.SetId(zoneId)
d.SetId(zoneId[i])
return nil
}

Expand Down
33 changes: 25 additions & 8 deletions aws/data_source_aws_elb_hosted_zone_id_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package aws

import (
"fmt"
"testing"

"github.com/hashicorp/terraform/helper/resource"
Expand All @@ -12,27 +13,43 @@ func TestAccAWSElbHostedZoneId_basic(t *testing.T) {
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccCheckAwsElbHostedZoneIdConfig,
Config: testAccCheckAwsElbHostedZoneIdBasicConfig,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("data.aws_elb_hosted_zone_id.main", "id", "Z1H1FL5HABSF5"),
),
},
{
Config: testAccCheckAwsElbHostedZoneIdExplicitRegionConfig,
Config: testAccCheckAwsElbHostedZoneIdExplicitConfig("us-east-1", "application"),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("data.aws_elb_hosted_zone_id.regional", "id", "Z32O12XQLNTSW2"),
resource.TestCheckResourceAttr("data.aws_elb_hosted_zone_id.regional", "id", "Z35SXDOTRQ7X7K"),
),
},
{
Config: testAccCheckAwsElbHostedZoneIdExplicitConfig("us-west-1", "classic"),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("data.aws_elb_hosted_zone_id.regional", "id", "Z368ELLRRE2KJ0"),
),
},
{
Config: testAccCheckAwsElbHostedZoneIdExplicitConfig("eu-west-2", "network"),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("data.aws_elb_hosted_zone_id.regional", "id", "ZD4D7Y8KGAS4G"),
),
},
},
})
}

const testAccCheckAwsElbHostedZoneIdConfig = `
data "aws_elb_hosted_zone_id" "main" { }
const testAccCheckAwsElbHostedZoneIdBasicConfig = `
data "aws_elb_hosted_zone_id" "main" {
}
`

const testAccCheckAwsElbHostedZoneIdExplicitRegionConfig = `
func testAccCheckAwsElbHostedZoneIdExplicitConfig(region, elbType string) string {
return fmt.Sprintf(`
data "aws_elb_hosted_zone_id" "regional" {
region = "eu-west-1"
region = "%s"
elb_type = "%s"
}
`, region, elbType)
}
`
5 changes: 5 additions & 0 deletions website/docs/d/elb_hosted_zone_id.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ resource "aws_route53_record" "www" {

* `region` - (Optional) Name of the region whose AWS ELB HostedZoneId is desired.
Defaults to the region from the AWS provider configuration.
* `elb_type` - (Optional) Type of ELB the HostedZoneId is being requested for. Defaults to `application`/`classic` (Both use the same HostedZoneId)
Valid values:
* `application`
* `classic`
* `network`


## Attributes Reference
Expand Down