diff --git a/third_party/terraform/website/docs/r/dns_record_set.markdown b/third_party/terraform/website/docs/r/dns_record_set.markdown index 388bad366ffb..c0378fa4dbd3 100644 --- a/third_party/terraform/website/docs/r/dns_record_set.markdown +++ b/third_party/terraform/website/docs/r/dns_record_set.markdown @@ -163,11 +163,11 @@ Only the arguments listed above are exposed as attributes. ## Import -DNS record set can be imported using the `zone name`, `record name` and record `type`, with an optional `project`, e.g. +DNS record sets can be imported using either of these accepted formats: ``` -$ terraform import google_dns_record_set.frontend prod-zone/frontend.prod.mydomain.com./A -$ terraform import google_dns_record_set.frontend prod-project/prod-zone/frontend.prod.mydomain.com./A +$ terraform import google_dns_record_set.frontend {{project}}/{{zone}}/{{name}}/{{type}} +$ terraform import google_dns_record_set.frontend {{zone}}/{{name}}/{{type}} ``` Note: The record name must include the trailing dot at the end.