Update DNS managed zone in tests.

Move from using qa.test.com, a domain we don't own, to qa.tf-test.club,
a domain we do own, so the domain validation doesn't cause our tests to
fail anymore.
This commit is contained in:
Paddy Carver 2018-06-22 00:00:30 -07:00
parent a3964baed6
commit 2edf3087a9

View File

@ -2,10 +2,11 @@ package google
import (
"fmt"
"testing"
"github.com/hashicorp/terraform/helper/acctest"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/terraform"
"testing"
)
func TestAccDataSourceDnsManagedZone_basic(t *testing.T) {
@ -61,7 +62,7 @@ func testAccDataSourceDnsManagedZone_basic() string {
return fmt.Sprintf(`
resource "google_dns_managed_zone" "foo" {
name = "qa-zone-%s"
dns_name = "qa.test.com."
dns_name = "qa.tf-test.club."
description = "QA DNS zone"
}