Skip to content

Commit 30d0a0b

Browse files
committed
rewording
1 parent 586ff19 commit 30d0a0b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

modules/mysql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
| Name | Description | Type | Default | Required |
88
|------|-------------|:----:|:-----:|:-----:|
99
| activation_policy | The activation policy for the master instance. Can be either `ALWAYS`, `NEVER` or `ON_DEMAND`. | string | `ALWAYS` | no |
10-
| additional_databases | The list of databases for all instances | list | `<list>` | no |
11-
| additional_users | The list of users for all instances | list | `<list>` | no |
10+
| additional_databases | A list of databases to be created in your cluster | list | `<list>` | no |
11+
| additional_users | A list of users to be created in your cluster | list | `<list>` | no |
1212
| authorized_gae_applications | The list of authorized App Engine project names | list | `<list>` | no |
1313
| backup_configuration | The backup configuration block of the Cloud SQL resources This argument will be passed through the master instance directrly.<br><br>See [more details](https://www.terraform.io/docs/providers/google/r/sql_database_instance.html). | map | `<map>` | no |
1414
| database_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags) | list | `<list>` | no |

modules/mysql/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ variable "db_collation" {
304304
}
305305

306306
variable "additional_databases" {
307-
description = "A list of databases to create in your cluster"
307+
description = "A list of databases to be created in your cluster"
308308
default = []
309309
}
310310

modules/postgresql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
| Name | Description | Type | Default | Required |
88
|------|-------------|:----:|:-----:|:-----:|
99
| activation_policy | The activation policy for the master instance.Can be either `ALWAYS`, `NEVER` or `ON_DEMAND`. | string | `ALWAYS` | no |
10-
| additional_databases | The list of databases for all instances | list | `<list>` | no |
11-
| additional_users | The list of users for all instances | list | `<list>` | no |
10+
| additional_databases | A list of databases to be created in your cluster | list | `<list>` | no |
11+
| additional_users | A list of users to be created in your cluster | list | `<list>` | no |
1212
| authorized_gae_applications | The authorized gae applications for the Cloud SQL instances | list | `<list>` | no |
1313
| availability_type | The availability type for the master instance.This is only used to set up high availability for the PostgreSQL instance. Can be either `ZONAL` or `REGIONAL`. | string | `ZONAL` | no |
1414
| backup_configuration | The backup configuration block of the Cloud SQL resources This argument will be passed through the master instance directrly.<br><br>See [more details](https://www.terraform.io/docs/providers/google/r/sql_database_instance.html). | map | `<map>` | no |

modules/postgresql/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ variable "db_collation" {
224224
}
225225

226226
variable "additional_databases" {
227-
description = "The list of databases for all instances"
227+
description = "A list of databases to be created in your cluster"
228228
default = []
229229
}
230230

@@ -239,6 +239,6 @@ variable "user_password" {
239239
}
240240

241241
variable "additional_users" {
242-
description = "The list of users for all instances"
242+
description = "A list of users to be created in your cluster"
243243
default = []
244244
}

0 commit comments

Comments
 (0)