Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

description is now a required field for google_dns_managed_zone #5428

Merged
merged 1 commit into from
Mar 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions builtin/providers/google/resource_dns_managed_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ func resourceDnsManagedZone() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Default: "Managed by Terraform",
},

"name_servers": &schema.Schema{
Expand Down
1 change: 0 additions & 1 deletion builtin/providers/google/resource_dns_managed_zone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,4 @@ var testAccDnsManagedZone_basic = fmt.Sprintf(`
resource "google_dns_managed_zone" "foobar" {
name = "mzone-test-%s"
dns_name = "terraform.test."
description = "Test Description"
}`, acctest.RandString(10))
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The following arguments are supported:

* `dns_name` - (Required) The DNS name of this zone, e.g. "terraform.io".

* `description` - (Optional) A textual description field.
* `description` - (Optional) A textual description field. Defaults to 'Managed by Terraform'.

## Attributes Reference

Expand Down