diff --git a/builtin/providers/aws/resource_aws_route53_record_test.go b/builtin/providers/aws/resource_aws_route53_record_test.go index 6b25488d37..bbeb859cd8 100644 --- a/builtin/providers/aws/resource_aws_route53_record_test.go +++ b/builtin/providers/aws/resource_aws_route53_record_test.go @@ -133,6 +133,7 @@ func TestAccAWSRoute53Record_weighted(t *testing.T) { Check: resource.ComposeTestCheckFunc( testAccCheckRoute53RecordExists("aws_route53_record.www-dev"), testAccCheckRoute53RecordExists("aws_route53_record.www-live"), + testAccCheckRoute53RecordExists("aws_route53_record.www-off"), ), }, }, @@ -407,6 +408,16 @@ resource "aws_route53_record" "www-live" { set_identifier = "live" records = ["dev.notexample.com"] } + +resource "aws_route53_record" "www-off" { + zone_id = "${aws_route53_zone.main.zone_id}" + name = "www" + type = "CNAME" + ttl = "5" + weight = 0 + set_identifier = "off" + records = ["dev.notexample.com"] +} ` const testAccRoute53ElbAliasRecord = `