Skip to content

Commit de4ae94

Browse files
authored
Merge pull request hashicorp#2009 from chrisst/is-1803-dns-labels
Add labels functionality to managed DNS
2 parents 9ce87ea + 84d16d1 commit de4ae94

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

docs/r/dns_managed_zone.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ resource "google_dns_managed_zone" "prod" {
1818
name = "prod-zone"
1919
dns_name = "prod.mydomain.com."
2020
description = "Production DNS zone"
21+
22+
labels = {
23+
foo = "bar"
24+
}
2125
}
2226
```
2327

@@ -37,6 +41,8 @@ The following arguments are supported:
3741
* `project` - (Optional) The ID of the project in which the resource belongs. If it
3842
is not provided, the provider project is used.
3943

44+
* `labels` - (Optional) A set of key/value label pairs to assign to the instance.
45+
4046
## Attributes Reference
4147

4248
In addition to the arguments listed above, the following computed attributes are

0 commit comments

Comments
 (0)