From c886148e15bd5d2200f31647a42d94028a802d67 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 22 Aug 2014 12:51:19 -0700 Subject: [PATCH] providers/aws: use example.com for tests --- builtin/providers/aws/resource_aws_route53_record_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/providers/aws/resource_aws_route53_record_test.go b/builtin/providers/aws/resource_aws_route53_record_test.go index 08c551453..b896105ed 100644 --- a/builtin/providers/aws/resource_aws_route53_record_test.go +++ b/builtin/providers/aws/resource_aws_route53_record_test.go @@ -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"]