Skip to content

Commit

Permalink
providers/aws: can create records with multiple values [GH-221]
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Aug 23, 2014
1 parent c886148 commit 623c635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/providers/aws/resource_aws_route53_record_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
`

0 comments on commit 623c635

Please sign in to comment.