diff --git a/docs/data-sources/a_record_set.md b/docs/data-sources/a_record_set.md index 28a60b16..2a9bb362 100644 --- a/docs/data-sources/a_record_set.md +++ b/docs/data-sources/a_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_a_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -31,4 +32,6 @@ output "google_addrs" { ### Read-Only - `addrs` (List of String) A list of IP addresses. IP addresses are always sorted to avoid constant changing plans. -- `id` (String) Always set to the host. \ No newline at end of file +- `id` (String) Always set to the host. + + diff --git a/docs/data-sources/aaaa_record_set.md b/docs/data-sources/aaaa_record_set.md index 080bacdd..1292d827 100644 --- a/docs/data-sources/aaaa_record_set.md +++ b/docs/data-sources/aaaa_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_aaaa_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -32,3 +33,5 @@ output "google_addrs" { - `addrs` (List of String) A list of IP addresses. IP addresses are always sorted to avoid constant changing plans. - `id` (String) Always set to the host. + + diff --git a/docs/data-sources/cname_record_set.md b/docs/data-sources/cname_record_set.md index afcebab5..281863c9 100644 --- a/docs/data-sources/cname_record_set.md +++ b/docs/data-sources/cname_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_cname_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -32,3 +33,5 @@ output "hashi_cname" { - `cname` (String) A CNAME record associated with host. - `id` (String) Always set to the host. + + diff --git a/docs/data-sources/mx_record_set.md b/docs/data-sources/mx_record_set.md index 89b128ba..373d4d17 100644 --- a/docs/data-sources/mx_record_set.md +++ b/docs/data-sources/mx_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_mx_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -40,3 +41,5 @@ Read-Only: - `exchange` (String) - `preference` (Number) + + diff --git a/docs/data-sources/ns_record_set.md b/docs/data-sources/ns_record_set.md index 12a67502..135daecc 100644 --- a/docs/data-sources/ns_record_set.md +++ b/docs/data-sources/ns_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_ns_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -32,3 +33,5 @@ output "google_nameservers" { - `id` (String) Always set to the domain. - `nameservers` (List of String) A list of nameservers. Nameservers are always sorted to avoid constant changing plans. + + diff --git a/docs/data-sources/ptr_record_set.md b/docs/data-sources/ptr_record_set.md index 19b863a1..35f2b329 100644 --- a/docs/data-sources/ptr_record_set.md +++ b/docs/data-sources/ptr_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_ptr_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -33,4 +34,4 @@ output "hashi_ptr" { - `id` (String) Always set to the IP address. - `ptr` (String) A PTR record associated with `ip_address`. - __NOTE__: Only the first result is taken from the query. \ No newline at end of file + diff --git a/docs/data-sources/srv_record_set.md b/docs/data-sources/srv_record_set.md index 6e064e89..2bb8e3a0 100644 --- a/docs/data-sources/srv_record_set.md +++ b/docs/data-sources/srv_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_srv_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -42,3 +43,5 @@ Read-Only: - `priority` (Number) - `target` (String) - `weight` (Number) + + diff --git a/docs/data-sources/txt_record_set.md b/docs/data-sources/txt_record_set.md index be5fcd6d..f5f02b18 100644 --- a/docs/data-sources/txt_record_set.md +++ b/docs/data-sources/txt_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_txt_record_set Data Source - terraform-provider-dns" subcategory: "" description: |- @@ -37,3 +38,5 @@ output "hashi_txts" { - `id` (String) Always set to the host. - `record` (String) The first TXT record. - `records` (List of String) A list of TXT records. + + diff --git a/docs/resources/a_record_set.md b/docs/resources/a_record_set.md index 1fa23175..aa03d091 100644 --- a/docs/resources/a_record_set.md +++ b/docs/resources/a_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_a_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -43,8 +44,9 @@ resource "dns_a_record_set" "www" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_a_record_set.www www.example.com. ``` diff --git a/docs/resources/aaaa_record_set.md b/docs/resources/aaaa_record_set.md index 919e2ab8..9ea980ac 100644 --- a/docs/resources/aaaa_record_set.md +++ b/docs/resources/aaaa_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_aaaa_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -42,8 +43,9 @@ resource "dns_aaaa_record_set" "www" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_aaaa_record_set.www www.example.com. ``` diff --git a/docs/resources/cname_record.md b/docs/resources/cname_record.md index 270f0918..34c03f56 100644 --- a/docs/resources/cname_record.md +++ b/docs/resources/cname_record.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_cname_record Resource - terraform-provider-dns" subcategory: "" description: |- @@ -39,8 +40,9 @@ resource "dns_cname_record" "foo" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_cname_record.foo foo.example.com. ``` diff --git a/docs/resources/mx_record_set.md b/docs/resources/mx_record_set.md index 0fc28d3c..755ea411 100644 --- a/docs/resources/mx_record_set.md +++ b/docs/resources/mx_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_mx_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -80,8 +81,9 @@ Required: ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_mx_record_set.mx example.com. ``` diff --git a/docs/resources/ns_record_set.md b/docs/resources/ns_record_set.md index 388cee37..93ccc602 100644 --- a/docs/resources/ns_record_set.md +++ b/docs/resources/ns_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_ns_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -42,9 +43,9 @@ resource "dns_ns_record_set" "www" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_ns_record_set.www www.example.com. ``` - diff --git a/docs/resources/ptr_record.md b/docs/resources/ptr_record.md index 3ed6a25b..25e79acc 100644 --- a/docs/resources/ptr_record.md +++ b/docs/resources/ptr_record.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_ptr_record Resource - terraform-provider-dns" subcategory: "" description: |- @@ -39,9 +40,9 @@ resource "dns_ptr_record" "dns-sd" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_ptr_record.dns-sd r._dns-sd.example.com. ``` - diff --git a/docs/resources/srv_record_set.md b/docs/resources/srv_record_set.md index 54dc1269..7271901f 100644 --- a/docs/resources/srv_record_set.md +++ b/docs/resources/srv_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_srv_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -66,9 +67,9 @@ Required: ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell +# Import using the FQDN. terraform import dns_srv_record_set.sip _sip._tcp.example.com. ``` - diff --git a/docs/resources/txt_record_set.md b/docs/resources/txt_record_set.md index 1f7ac862..e9595fec 100644 --- a/docs/resources/txt_record_set.md +++ b/docs/resources/txt_record_set.md @@ -1,4 +1,5 @@ --- +# generated by https://github.com/hashicorp/terraform-plugin-docs page_title: "dns_txt_record_set Resource - terraform-provider-dns" subcategory: "" description: |- @@ -40,8 +41,9 @@ resource "dns_txt_record_set" "google" { ## Import -Records can be imported using the FQDN, e.g. +Import is supported using the following syntax: ```shell -terraform import dns_txt_record_set.google example.com. +# Import using the FQDN. +terraform import dns_txt_record_set.example example.com. ``` diff --git a/examples/data-sources/data_source_a_record_set.tf b/examples/data-sources/dns_a_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_a_record_set.tf rename to examples/data-sources/dns_a_record_set/data-source.tf diff --git a/examples/data-sources/data_source_aaaa_record_set.tf b/examples/data-sources/dns_aaaa_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_aaaa_record_set.tf rename to examples/data-sources/dns_aaaa_record_set/data-source.tf diff --git a/examples/data-sources/data_source_cname_record_set.tf b/examples/data-sources/dns_cname_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_cname_record_set.tf rename to examples/data-sources/dns_cname_record_set/data-source.tf diff --git a/examples/data-sources/data_source_mx_record_set.tf b/examples/data-sources/dns_mx_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_mx_record_set.tf rename to examples/data-sources/dns_mx_record_set/data-source.tf diff --git a/examples/data-sources/data_source_ns_record_set.tf b/examples/data-sources/dns_ns_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_ns_record_set.tf rename to examples/data-sources/dns_ns_record_set/data-source.tf diff --git a/examples/data-sources/data_source_ptr_record_set.tf b/examples/data-sources/dns_ptr_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_ptr_record_set.tf rename to examples/data-sources/dns_ptr_record_set/data-source.tf diff --git a/examples/data-sources/data_source_srv_record_set.tf b/examples/data-sources/dns_srv_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_srv_record_set.tf rename to examples/data-sources/dns_srv_record_set/data-source.tf diff --git a/examples/data-sources/data_source_txt_record_set.tf b/examples/data-sources/dns_txt_record_set/data-source.tf similarity index 100% rename from examples/data-sources/data_source_txt_record_set.tf rename to examples/data-sources/dns_txt_record_set/data-source.tf diff --git a/examples/resources/dns_a_record_set/import.sh b/examples/resources/dns_a_record_set/import.sh new file mode 100644 index 00000000..b4762595 --- /dev/null +++ b/examples/resources/dns_a_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_a_record_set.www www.example.com. diff --git a/examples/resources/resource_a_record_set.tf b/examples/resources/dns_a_record_set/resource.tf similarity index 100% rename from examples/resources/resource_a_record_set.tf rename to examples/resources/dns_a_record_set/resource.tf diff --git a/examples/resources/dns_aaaa_record_set/import.sh b/examples/resources/dns_aaaa_record_set/import.sh new file mode 100644 index 00000000..f2a473f3 --- /dev/null +++ b/examples/resources/dns_aaaa_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_aaaa_record_set.www www.example.com. diff --git a/examples/resources/resource_aaaa_record_set.tf b/examples/resources/dns_aaaa_record_set/resource.tf similarity index 100% rename from examples/resources/resource_aaaa_record_set.tf rename to examples/resources/dns_aaaa_record_set/resource.tf diff --git a/examples/resources/dns_cname_record/import.sh b/examples/resources/dns_cname_record/import.sh new file mode 100644 index 00000000..19dff8fd --- /dev/null +++ b/examples/resources/dns_cname_record/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_cname_record.foo foo.example.com. diff --git a/examples/resources/resource_cname_record_set.tf b/examples/resources/dns_cname_record/resource.tf similarity index 100% rename from examples/resources/resource_cname_record_set.tf rename to examples/resources/dns_cname_record/resource.tf diff --git a/examples/resources/dns_mx_record_set/import.sh b/examples/resources/dns_mx_record_set/import.sh new file mode 100644 index 00000000..6d0883b5 --- /dev/null +++ b/examples/resources/dns_mx_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_mx_record_set.mx example.com. diff --git a/examples/resources/resource_mx_record_set.tf b/examples/resources/dns_mx_record_set/resource.tf similarity index 100% rename from examples/resources/resource_mx_record_set.tf rename to examples/resources/dns_mx_record_set/resource.tf diff --git a/examples/resources/dns_ns_record_set/import.sh b/examples/resources/dns_ns_record_set/import.sh new file mode 100644 index 00000000..539e4c0a --- /dev/null +++ b/examples/resources/dns_ns_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_ns_record_set.www www.example.com. diff --git a/examples/resources/resource_ns_record_set.tf b/examples/resources/dns_ns_record_set/resource.tf similarity index 100% rename from examples/resources/resource_ns_record_set.tf rename to examples/resources/dns_ns_record_set/resource.tf diff --git a/examples/resources/dns_ptr_record/import.sh b/examples/resources/dns_ptr_record/import.sh new file mode 100644 index 00000000..007fb441 --- /dev/null +++ b/examples/resources/dns_ptr_record/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_ptr_record.dns-sd r._dns-sd.example.com. diff --git a/examples/resources/resource_ptr_record_set.tf b/examples/resources/dns_ptr_record/resource.tf similarity index 100% rename from examples/resources/resource_ptr_record_set.tf rename to examples/resources/dns_ptr_record/resource.tf diff --git a/examples/resources/dns_srv_record_set/import.sh b/examples/resources/dns_srv_record_set/import.sh new file mode 100644 index 00000000..8986e44d --- /dev/null +++ b/examples/resources/dns_srv_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_srv_record_set.sip _sip._tcp.example.com. diff --git a/examples/resources/resource_srv_record_set.tf b/examples/resources/dns_srv_record_set/resource.tf similarity index 100% rename from examples/resources/resource_srv_record_set.tf rename to examples/resources/dns_srv_record_set/resource.tf diff --git a/examples/resources/dns_txt_record_set/import.sh b/examples/resources/dns_txt_record_set/import.sh new file mode 100644 index 00000000..c44da050 --- /dev/null +++ b/examples/resources/dns_txt_record_set/import.sh @@ -0,0 +1,2 @@ +# Import using the FQDN. +terraform import dns_txt_record_set.example example.com. diff --git a/examples/resources/resource_txt_record_set.tf b/examples/resources/dns_txt_record_set/resource.tf similarity index 100% rename from examples/resources/resource_txt_record_set.tf rename to examples/resources/dns_txt_record_set/resource.tf diff --git a/templates/data-sources/a_record_set.md.tmpl b/templates/data-sources/a_record_set.md.tmpl deleted file mode 100644 index 86706a18..00000000 --- a/templates/data-sources/a_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_a_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} \ No newline at end of file diff --git a/templates/data-sources/aaaa_record_set.md.tmpl b/templates/data-sources/aaaa_record_set.md.tmpl deleted file mode 100644 index e1531d91..00000000 --- a/templates/data-sources/aaaa_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_aaaa_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/data-sources/cname_record_set.md.tmpl b/templates/data-sources/cname_record_set.md.tmpl deleted file mode 100644 index 7d4f8346..00000000 --- a/templates/data-sources/cname_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_cname_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/data-sources/mx_record_set.md.tmpl b/templates/data-sources/mx_record_set.md.tmpl deleted file mode 100644 index a2ccb959..00000000 --- a/templates/data-sources/mx_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_mx_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/data-sources/ns_record_set.md.tmpl b/templates/data-sources/ns_record_set.md.tmpl deleted file mode 100644 index 7cf1f247..00000000 --- a/templates/data-sources/ns_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_ns_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/data-sources/ptr_record_set.md.tmpl b/templates/data-sources/ptr_record_set.md.tmpl deleted file mode 100644 index aab534c2..00000000 --- a/templates/data-sources/ptr_record_set.md.tmpl +++ /dev/null @@ -1,18 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_ptr_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - - __NOTE__: Only the first result is taken from the query. \ No newline at end of file diff --git a/templates/data-sources/srv_record_set.md.tmpl b/templates/data-sources/srv_record_set.md.tmpl deleted file mode 100644 index 3362a24b..00000000 --- a/templates/data-sources/srv_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_srv_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/data-sources/txt_record_set.md.tmpl b/templates/data-sources/txt_record_set.md.tmpl deleted file mode 100644 index 613fded5..00000000 --- a/templates/data-sources/txt_record_set.md.tmpl +++ /dev/null @@ -1,16 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/data-sources/data_source_txt_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} diff --git a/templates/resources/a_record_set.md.tmpl b/templates/resources/a_record_set.md.tmpl deleted file mode 100644 index 94bed584..00000000 --- a/templates/resources/a_record_set.md.tmpl +++ /dev/null @@ -1,24 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_a_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_a_record_set.www www.example.com. -``` diff --git a/templates/resources/aaaa_record_set.md.tmpl b/templates/resources/aaaa_record_set.md.tmpl deleted file mode 100644 index 3faaf55e..00000000 --- a/templates/resources/aaaa_record_set.md.tmpl +++ /dev/null @@ -1,24 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_aaaa_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_aaaa_record_set.www www.example.com. -``` diff --git a/templates/resources/cname_record.md.tmpl b/templates/resources/cname_record.md.tmpl deleted file mode 100644 index 01d60ae2..00000000 --- a/templates/resources/cname_record.md.tmpl +++ /dev/null @@ -1,24 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_cname_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_cname_record.foo foo.example.com. -``` diff --git a/templates/resources/mx_record_set.md.tmpl b/templates/resources/mx_record_set.md.tmpl deleted file mode 100644 index fbaec72f..00000000 --- a/templates/resources/mx_record_set.md.tmpl +++ /dev/null @@ -1,24 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_mx_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_mx_record_set.mx example.com. -``` diff --git a/templates/resources/ns_record_set.md.tmpl b/templates/resources/ns_record_set.md.tmpl deleted file mode 100644 index af0f1ea3..00000000 --- a/templates/resources/ns_record_set.md.tmpl +++ /dev/null @@ -1,25 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_ns_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_ns_record_set.www www.example.com. -``` - diff --git a/templates/resources/ptr_record.md.tmpl b/templates/resources/ptr_record.md.tmpl deleted file mode 100644 index 5156880d..00000000 --- a/templates/resources/ptr_record.md.tmpl +++ /dev/null @@ -1,25 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_ptr_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_ptr_record.dns-sd r._dns-sd.example.com. -``` - diff --git a/templates/resources/srv_record_set.md.tmpl b/templates/resources/srv_record_set.md.tmpl deleted file mode 100644 index 37d31e47..00000000 --- a/templates/resources/srv_record_set.md.tmpl +++ /dev/null @@ -1,25 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_srv_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_srv_record_set.sip _sip._tcp.example.com. -``` - diff --git a/templates/resources/txt_record_set.md.tmpl b/templates/resources/txt_record_set.md.tmpl deleted file mode 100644 index 11fa347f..00000000 --- a/templates/resources/txt_record_set.md.tmpl +++ /dev/null @@ -1,24 +0,0 @@ ---- -page_title: "{{.Name}} {{.Type}} - {{.ProviderName}}" -subcategory: "" -description: |- -{{ .Description | plainmarkdown | trimspace | prefixlines " " }} ---- - -# {{.Name}} ({{.Type}}) - -{{ .Description | trimspace }} - -## Example Usage - -{{ tffile "examples/resources/resource_txt_record_set.tf" }} - -{{ .SchemaMarkdown | trimspace }} - -## Import - -Records can be imported using the FQDN, e.g. - -```shell -terraform import dns_txt_record_set.google example.com. -```