You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/mysql/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ module "mysql-db" {
49
49
| additional\_databases | A list of databases to be created in your cluster | <pre>list(object({<br> name = string<br> charset = string<br> collation = string<br> }))</pre> |`[]`| no |
50
50
| additional\_users | A list of users to be created in your cluster. A random password would be set for the user if the `random_password` variable is set. | <pre>list(object({<br> name = string<br> password = string<br> random_password = bool<br> type = string<br> host = string<br> }))</pre> |`[]`| no |
51
51
| 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 | <pre>object({<br> binary_log_enabled = optional(bool, false)<br> enabled = optional(bool, false)<br> start_time = optional(string)<br> location = optional(string)<br> transaction_log_retention_days = optional(string)<br> retained_backups = optional(number)<br> retention_unit = optional(string)<br> })</pre> |`{}`| no |
53
53
| connector\_enforcement | Enforce that clients use the connector library |`bool`|`false`| no |
54
54
| create\_timeout | The optional timout that is applied to limit long database creates. |`string`|`"30m"`| no |
55
55
| data\_cache\_enabled | Whether data cache is enabled for the instance. Defaults to false. Feature is only available for ENTERPRISE\_PLUS tier and supported database\_versions |`bool`|`false`| no |
@@ -58,7 +58,7 @@ module "mysql-db" {
58
58
| database\_version | The database version to use |`string`| n/a | yes |
59
59
| db\_charset | The charset for the default database |`string`|`""`| no |
60
60
| db\_collation | The collation for the default database. Example: 'utf8\_general\_ci' |`string`|`""`| no |
61
-
| db\_name | The name of the default database to create |`string`|`"default"`| no |
61
+
| db\_name | The name of the default database to create. This should be unique per Cloud SQL instance.|`string`|`"default"`| no |
62
62
| delete\_timeout | The optional timout that is applied to limit long database deletes. |`string`|`"30m"`| no |
63
63
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. |`bool`|`true`| no |
64
64
| deletion\_protection\_enabled | Enables protection of an instance from accidental deletion across all surfaces (API, gcloud, Cloud Console and Terraform). |`bool`|`false`| no |
Copy file name to clipboardExpand all lines: modules/postgresql/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,7 +130,7 @@ module "pg" {
130
130
| database\_version | The database version to use |`string`| n/a | yes |
131
131
| db\_charset | The charset for the default database |`string`|`""`| no |
132
132
| db\_collation | The collation for the default database. Example: 'en\_US.UTF8' |`string`|`""`| no |
133
-
| db\_name | The name of the default database to create |`string`|`"default"`| no |
133
+
| db\_name | The name of the default database to create. This should be unique per Cloud SQL instance.|`string`|`"default"`| no |
134
134
| delete\_timeout | The optional timout that is applied to limit long database deletes. |`string`|`"30m"`| no |
135
135
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. |`bool`|`true`| no |
136
136
| deletion\_protection\_enabled | Enables protection of an Cloud SQL instance from accidental deletion across all surfaces (API, gcloud, Cloud Console and Terraform). |`bool`|`false`| no |
0 commit comments