diff --git a/modules/mysql/README.md b/modules/mysql/README.md index 2a7d98a7..90dbc13b 100644 --- a/modules/mysql/README.md +++ b/modules/mysql/README.md @@ -12,7 +12,7 @@ | availability\_type | The availability type for the master instance. Can be either `REGIONAL` or `null`. | string | `"REGIONAL"` | no | | backup\_configuration | The backup_configuration settings subblock for the database setings | object | `` | no | | create\_timeout | The optional timout that is applied to limit long database creates. | string | `"10m"` | no | -| database\_flags | List of Cloud SQL flags that are applied to the database server | object | `` | no | +| database\_flags | List of Cloud SQL flags that are applied to the database server. See [more details](https://cloud.google.com/sql/docs/mysql/flags) | object | `` | no | | database\_version | The database version to use | string | n/a | yes | | db\_charset | The charset for the default database | string | `""` | no | | db\_collation | The collation for the default database. Example: 'utf8_general_ci' | string | `""` | no | diff --git a/modules/mysql/variables.tf b/modules/mysql/variables.tf index 991e2ea9..eb6c1676 100644 --- a/modules/mysql/variables.tf +++ b/modules/mysql/variables.tf @@ -116,7 +116,7 @@ variable "maintenance_window_update_track" { } variable "database_flags" { - description = "List of Cloud SQL flags that are applied to the database server" + description = "List of Cloud SQL flags that are applied to the database server. See [more details](https://cloud.google.com/sql/docs/mysql/flags)" type = list(object({ name = string value = string diff --git a/modules/postgresql/README.md b/modules/postgresql/README.md index 65bd4966..64e29601 100644 --- a/modules/postgresql/README.md +++ b/modules/postgresql/README.md @@ -11,7 +11,7 @@ | 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 settings subblock for the database setings | object | `` | no | | create\_timeout | The optional timout that is applied to limit long database creates. | string | `"10m"` | no | -| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags) | object | `` | no | +| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/postgres/flags) | object | `` | no | | database\_version | The database version to use | string | n/a | yes | | db\_charset | The charset for the default database | string | `""` | no | | db\_collation | The collation for the default database. Example: 'en_US.UTF8' | string | `""` | no | diff --git a/modules/postgresql/variables.tf b/modules/postgresql/variables.tf index a333ac49..3e277fe6 100644 --- a/modules/postgresql/variables.tf +++ b/modules/postgresql/variables.tf @@ -108,7 +108,7 @@ variable "maintenance_window_update_track" { } variable "database_flags" { - description = "The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags)" + description = "The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/postgres/flags)" type = list(object({ name = string value = string