Skip to content

Commit

Permalink
[dns_record_set] change primary-backup -> failover in docs (GoogleClo…
Browse files Browse the repository at this point in the history
  • Loading branch information
hkundag authored and pengq-google committed May 21, 2024
1 parent 85ad22e commit cbbc6b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ resource "google_dns_record_set" "geo" {
}
```

#### Primary-Backup
#### Failover

```hcl
resource "google_dns_record_set" "a" {
Expand Down Expand Up @@ -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).

<a name="nested_wrr"></a>The `wrr` block supports:
Expand Down

0 comments on commit cbbc6b3

Please sign in to comment.