From 623c635fb1185aa4ffb6de8bda4dd1df6524af9e Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 22 Aug 2014 17:19:39 -0700 Subject: [PATCH] providers/aws: can create records with multiple values [GH-221] --- builtin/providers/aws/resource_aws_route53_record_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/providers/aws/resource_aws_route53_record_test.go b/builtin/providers/aws/resource_aws_route53_record_test.go index b896105ed5c1..562f54fda7d7 100644 --- a/builtin/providers/aws/resource_aws_route53_record_test.go +++ b/builtin/providers/aws/resource_aws_route53_record_test.go @@ -89,14 +89,14 @@ func testAccCheckRoute53RecordExists(n string) resource.TestCheckFunc { const testAccRoute53RecordConfig = ` resource "aws_route53_zone" "main" { - name = "example.com" + name = "notexample.com" } resource "aws_route53_record" "default" { zone_id = "${aws_route53_zone.main.zone_id}" - name = "www.example.com" + name = "www.notexample.com" type = "A" ttl = "30" - records = ["127.0.0.1"] + records = ["127.0.0.1", "127.0.0.27"] } `