From a53b30f2b08212a1cae116aa9d52ede9d8df7af8 Mon Sep 17 00:00:00 2001 From: Dana Hoffman Date: Mon, 17 Jun 2019 15:10:11 -0700 Subject: [PATCH] update import format in docs to newer style --- .../terraform/website/docs/r/dns_record_set.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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.