Skip to content

Commit

Permalink
providers/aws: use example.com for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Aug 22, 2014
1 parent ed99d24 commit c886148
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/providers/aws/resource_aws_route53_record_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ func testAccCheckRoute53RecordExists(n string) resource.TestCheckFunc {

const testAccRoute53RecordConfig = `
resource "aws_route53_zone" "main" {
name = "hashicorp.com"
name = "example.com"
}
resource "aws_route53_record" "default" {
zone_id = "${aws_route53_zone.main.zone_id}"
name = "www.hashicorp.com"
name = "www.example.com"
type = "A"
ttl = "30"
records = ["127.0.0.1"]
Expand Down

0 comments on commit c886148

Please sign in to comment.