Skip to content

Commit e6a31ca

Browse files
authored
fix(docs): Update links for database flags on postgresql and mysql (#134)
1 parent ec2a109 commit e6a31ca

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

modules/mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
| availability\_type | The availability type for the master instance. Can be either `REGIONAL` or `null`. | string | `"REGIONAL"` | no |
1313
| backup\_configuration | The backup_configuration settings subblock for the database setings | object | `<map>` | no |
1414
| create\_timeout | The optional timout that is applied to limit long database creates. | string | `"10m"` | no |
15-
| database\_flags | List of Cloud SQL flags that are applied to the database server | object | `<list>` | no |
15+
| 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 | `<list>` | no |
1616
| database\_version | The database version to use | string | n/a | yes |
1717
| db\_charset | The charset for the default database | string | `""` | no |
1818
| db\_collation | The collation for the default database. Example: 'utf8_general_ci' | string | `""` | no |

modules/mysql/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ variable "maintenance_window_update_track" {
116116
}
117117

118118
variable "database_flags" {
119-
description = "List of Cloud SQL flags that are applied to the database server"
119+
description = "List of Cloud SQL flags that are applied to the database server. See [more details](https://cloud.google.com/sql/docs/mysql/flags)"
120120
type = list(object({
121121
name = string
122122
value = string

modules/postgresql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
| 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 |
1212
| backup\_configuration | The backup_configuration settings subblock for the database setings | object | `<map>` | no |
1313
| create\_timeout | The optional timout that is applied to limit long database creates. | string | `"10m"` | no |
14-
| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags) | object | `<list>` | no |
14+
| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/postgres/flags) | object | `<list>` | no |
1515
| database\_version | The database version to use | string | n/a | yes |
1616
| db\_charset | The charset for the default database | string | `""` | no |
1717
| db\_collation | The collation for the default database. Example: 'en_US.UTF8' | string | `""` | no |

modules/postgresql/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ variable "maintenance_window_update_track" {
108108
}
109109

110110
variable "database_flags" {
111-
description = "The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/mysql/flags)"
111+
description = "The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/postgres/flags)"
112112
type = list(object({
113113
name = string
114114
value = string

0 commit comments

Comments
 (0)