providers/aws: use example.com for tests
This commit is contained in:
parent
ed99d2497b
commit
c886148e15
|
@ -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"]
|
||||
|
|
Loading…
Reference in New Issue