Merge pull request #1693 from terraform-providers/paddy_dns_managed_zone_data_source

Update DNS managed zone in tests.
This commit is contained in:
Paddy 2018-06-22 09:38:37 -07:00 committed by GitHub
commit 9ffe753bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"
}