Skip to content

Commit

Permalink
rewording
Browse files Browse the repository at this point in the history
  • Loading branch information
namusyaka committed Mar 12, 2019
1 parent 586ff19 commit 30d0a0b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions modules/mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| activation_policy | The activation policy for the master instance. Can be either `ALWAYS`, `NEVER` or `ON_DEMAND`. | string | `ALWAYS` | no |
| additional_databases | The list of databases for all instances | list | `<list>` | no |
| additional_users | The list of users for all instances | list | `<list>` | no |
| additional_databases | A list of databases to be created in your cluster | list | `<list>` | no |
| additional_users | A list of users to be created in your cluster | list | `<list>` | no |
| authorized_gae_applications | The list of authorized App Engine project names | list | `<list>` | no |
| 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 |
| database_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags) | list | `<list>` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/mysql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ variable "db_collation" {
}

variable "additional_databases" {
description = "A list of databases to create in your cluster"
description = "A list of databases to be created in your cluster"
default = []
}

Expand Down
4 changes: 2 additions & 2 deletions modules/postgresql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| activation_policy | The activation policy for the master instance.Can be either `ALWAYS`, `NEVER` or `ON_DEMAND`. | string | `ALWAYS` | no |
| additional_databases | The list of databases for all instances | list | `<list>` | no |
| additional_users | The list of users for all instances | list | `<list>` | no |
| additional_databases | A list of databases to be created in your cluster | list | `<list>` | no |
| additional_users | A list of users to be created in your cluster | list | `<list>` | no |
| authorized_gae_applications | The authorized gae applications for the Cloud SQL instances | list | `<list>` | no |
| 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 |
| 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 |
Expand Down
4 changes: 2 additions & 2 deletions modules/postgresql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ variable "db_collation" {
}

variable "additional_databases" {
description = "The list of databases for all instances"
description = "A list of databases to be created in your cluster"
default = []
}

Expand All @@ -239,6 +239,6 @@ variable "user_password" {
}

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

0 comments on commit 30d0a0b

Please sign in to comment.