diff --git a/plugins/modules/gcp_sql_instance.py b/plugins/modules/gcp_sql_instance.py index b2504f1..3d8027f 100644 --- a/plugins/modules/gcp_sql_instance.py +++ b/plugins/modules/gcp_sql_instance.py @@ -155,12 +155,12 @@ options: type: str client_certificate: description: - - PEM representation of the slave's x509 certificate . + - PEM representation of the replica's x509 certificate . required: false type: str client_key: description: - - PEM representation of the slave's private key. The corresponding public + - PEM representation of the replica's private key. The corresponding public key is encoded in the client's certificate. required: false type: str @@ -171,7 +171,7 @@ options: type: int dump_file_path: description: - - Path to a SQL dump file in Google Cloud Storage from which the slave + - Path to a SQL dump file in Google Cloud Storage from which the replica instance is to be created. The URI is in the form gs://bucketName/fileName. Compressed gzip files (.gz) are also supported. Dumps should have the binlog coordinates from which replication should begin. This can be @@ -543,12 +543,12 @@ replicaConfiguration: type: str clientCertificate: description: - - PEM representation of the slave's x509 certificate . + - PEM representation of the replica's x509 certificate . returned: success type: str clientKey: description: - - PEM representation of the slave's private key. The corresponding public + - PEM representation of the replica's private key. The corresponding public key is encoded in the client's certificate. returned: success type: str @@ -559,11 +559,11 @@ replicaConfiguration: type: int dumpFilePath: description: - - Path to a SQL dump file in Google Cloud Storage from which the slave instance - is to be created. The URI is in the form gs://bucketName/fileName. Compressed - gzip files (.gz) are also supported. Dumps should have the binlog coordinates - from which replication should begin. This can be accomplished by setting - --master-data to 1 when using mysqldump. + - Path to a SQL dump file in Google Cloud Storage from which the replica + instance is to be created. The URI is in the form gs://bucketName/fileName. + Compressed gzip files (.gz) are also supported. Dumps should have the + binlog coordinates from which replication should begin. This can be accomplished + by setting --master-data to 1 when using mysqldump. returned: success type: str masterHeartbeatPeriod: diff --git a/plugins/modules/gcp_sql_instance_info.py b/plugins/modules/gcp_sql_instance_info.py index 7d336a1..5be79bd 100644 --- a/plugins/modules/gcp_sql_instance_info.py +++ b/plugins/modules/gcp_sql_instance_info.py @@ -241,13 +241,13 @@ resources: type: str clientCertificate: description: - - PEM representation of the slave's x509 certificate . + - PEM representation of the replica's x509 certificate . returned: success type: str clientKey: description: - - PEM representation of the slave's private key. The corresponding public - key is encoded in the client's certificate. + - PEM representation of the replica's private key. The corresponding + public key is encoded in the client's certificate. returned: success type: str connectRetryInterval: @@ -257,7 +257,7 @@ resources: type: int dumpFilePath: description: - - Path to a SQL dump file in Google Cloud Storage from which the slave + - Path to a SQL dump file in Google Cloud Storage from which the replica instance is to be created. The URI is in the form gs://bucketName/fileName. Compressed gzip files (.gz) are also supported. Dumps should have the binlog coordinates from which replication should begin. This can