From cbbc6b3aaa3b18c427b7edf02e13cdb35e30491d Mon Sep 17 00:00:00 2001 From: hkundag <53873858+hkundag@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:43:49 -0400 Subject: [PATCH] [dns_record_set] change primary-backup -> failover in docs (#10449) --- .../terraform/services/dns/resource_dns_record_set.go | 2 +- .../terraform/website/docs/r/dns_record_set.html.markdown | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mmv1/third_party/terraform/services/dns/resource_dns_record_set.go b/mmv1/third_party/terraform/services/dns/resource_dns_record_set.go index f5b0b41b6b14..58802e8ac510 100644 --- a/mmv1/third_party/terraform/services/dns/resource_dns_record_set.go +++ b/mmv1/third_party/terraform/services/dns/resource_dns_record_set.go @@ -167,7 +167,7 @@ func ResourceDnsRecordSet() *schema.Resource { "primary_backup": { Type: schema.TypeList, Optional: true, - Description: "The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.", + Description: "The configuration for a failover policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.", MaxItems: 1, Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ diff --git a/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown b/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown index ea2cd579c9d0..d2612690ab08 100644 --- a/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown +++ b/mmv1/third_party/terraform/website/docs/r/dns_record_set.html.markdown @@ -177,7 +177,7 @@ resource "google_dns_record_set" "geo" { } ``` -#### Primary-Backup +#### Failover ```hcl resource "google_dns_record_set" "a" { @@ -276,7 +276,7 @@ The following arguments are supported: * `enable_geo_fencing` - (Optional) Specifies whether to enable fencing for geo queries. -* `primary_backup` - (Optional) The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy. +* `primary_backup` - (Optional) The configuration for a failover policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy. Structure is [documented below](#nested_primary_backup). The `wrr` block supports: