Skip to content

Commit 89cb0fa

Browse files
replaced slave with replica (#4452) (#2921)
Signed-off-by: Modular Magician <[email protected]>
1 parent 7e35714 commit 89cb0fa

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.changelog/4452.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:none
2+
3+
```

google-beta/resource_sql_database_instance.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -467,14 +467,14 @@ settings.backup_configuration.binary_log_enabled are both set to true.`,
467467
Optional: true,
468468
ForceNew: true,
469469
AtLeastOneOf: replicaConfigurationKeys,
470-
Description: `PEM representation of the slave's x509 certificate.`,
470+
Description: `PEM representation of the replica's x509 certificate.`,
471471
},
472472
"client_key": {
473473
Type: schema.TypeString,
474474
Optional: true,
475475
ForceNew: true,
476476
AtLeastOneOf: replicaConfigurationKeys,
477-
Description: `PEM representation of the slave's private key. The corresponding public key in encoded in the client_certificate.`,
477+
Description: `PEM representation of the replica's private key. The corresponding public key in encoded in the client_certificate.`,
478478
},
479479
"connect_retry_interval": {
480480
Type: schema.TypeInt,
@@ -488,7 +488,7 @@ settings.backup_configuration.binary_log_enabled are both set to true.`,
488488
Optional: true,
489489
ForceNew: true,
490490
AtLeastOneOf: replicaConfigurationKeys,
491-
Description: `Path to a SQL file in Google Cloud Storage from which slave instances are created. Format is gs://bucket/filename.`,
491+
Description: `Path to a SQL file in Google Cloud Storage from which replica instances are created. Format is gs://bucket/filename.`,
492492
},
493493
"failover_target": {
494494
Type: schema.TypeBool,

website/docs/d/sql_database_instance.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ The `replica_configuration` block contains:
130130

131131
* `ca_certificate` - PEM representation of the trusted CA's x509 certificate.
132132

133-
* `client_certificate` - PEM representation of the slave's x509 certificate.
133+
* `client_certificate` - PEM representation of the replica's x509 certificate.
134134

135-
* `client_key` - PEM representation of the slave's private key.
135+
* `client_key` - PEM representation of the replica's private key.
136136

137137
* `connect_retry_interval` - The number of seconds between connect retries.
138138

139-
* `dump_file_path` - Path to a SQL file in GCS from which slave instances are created.
139+
* `dump_file_path` - Path to a SQL file in GCS from which replica instances are created.
140140

141141
* `failover_target` - Specifies if the replica is the failover target.
142142

website/docs/r/sql_database_instance.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,16 +349,16 @@ to work, cannot be updated, and supports:
349349
* `ca_certificate` - (Optional) PEM representation of the trusted CA's x509
350350
certificate.
351351

352-
* `client_certificate` - (Optional) PEM representation of the slave's x509
352+
* `client_certificate` - (Optional) PEM representation of the replica's x509
353353
certificate.
354354

355-
* `client_key` - (Optional) PEM representation of the slave's private key. The
355+
* `client_key` - (Optional) PEM representation of the replica's private key. The
356356
corresponding public key in encoded in the `client_certificate`.
357357

358358
* `connect_retry_interval` - (Optional, Default: 60) The number of seconds
359359
between connect retries.
360360

361-
* `dump_file_path` - (Optional) Path to a SQL file in GCS from which slave
361+
* `dump_file_path` - (Optional) Path to a SQL file in GCS from which replica
362362
instances are created. Format is `gs://bucket/filename`.
363363

364364
* `failover_target` - (Optional) Specifies if the replica is the failover target.

0 commit comments

Comments
 (0)