Skip to content

Commit f8e6d29

Browse files
committed
fix typo & make -S
1 parent 3d5d36d commit f8e6d29

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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 the instacne | list | `<list>` | no |
11-
| additional_users | The list of users for the instance | list | `<list>` | 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 |
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ variable "db_collation" {
304304
}
305305

306306
variable "additional_databases" {
307-
description = "The list of databases for the instacne"
307+
description = "The list of databases for all instances"
308308
default = []
309309
}
310310

@@ -324,6 +324,6 @@ variable "user_password" {
324324
}
325325

326326
variable "additional_users" {
327-
description = "The list of users for the instance"
327+
description = "The list of users for all instances"
328328
default = []
329329
}

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 the instacne | list | `<list>` | no |
11-
| additional_users | The list of users for the instance | list | `<list>` | 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 |
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 the instacne"
227+
description = "The list of databases for all instances"
228228
default = []
229229
}
230230

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

241241
variable "additional_users" {
242-
description = "The list of users for the instance"
242+
description = "The list of users for all instances"
243243
default = []
244244
}

0 commit comments

Comments
 (0)