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: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ This modules creates the following resources:
38
38
| backup\_enabled | True if backup configuration is enabled. |`bool`|`true`| no |
39
39
| backup\_point\_in\_time\_recovery\_enabled | True if Point-in-time recovery is enabled. Will restart database if enabled after instance creation. |`bool`|`true`| no |
40
40
| backup\_start\_time | HH:MM format time indicating when backup configuration starts. |`string`|`"06:00"`| no |
41
+
| cloudsql\_availability\_type | The availability type of the Cloud SQL instance, high availability (REGIONAL) or single zone (ZONAL). |`string`|`"REGIONAL"`| no |
41
42
| 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)| <pre>list(object({<br> name = string<br> value = string<br> }))</pre> |`[]`| no |
42
43
| db\_name | name of the database |`string`|`"doit"`| no |
43
44
| deletion\_protection | Set deletion protection on Cloud SQL instance. Unless this field is set to false, a terraform destroy or terraform apply command that deletes the instance will fail. |`bool`|`true`| no |
description="Set deletion protection on Cloud SQL instance. Unless this field is set to false, a terraform destroy or terraform apply command that deletes the instance will fail."
101
101
default=true
102
102
}
103
+
104
+
variable"cloudsql_availability_type" {
105
+
type=string
106
+
description="The availability type of the Cloud SQL instance, high availability (REGIONAL) or single zone (ZONAL)."
0 commit comments