providers/aws: use example.com for tests

This commit is contained in:
Mitchell Hashimoto 2014-08-22 12:51:19 -07:00
parent ed99d2497b
commit c886148e15
1 changed files with 2 additions and 2 deletions

View File

@ -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"]