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/mssql/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
The following dependency must be available for SQL Server module:
4
4
5
-
-[Terraform Provider Beta for GCP](https://github.com/terraform-providers/terraform-provider-google-beta) plugin >= 4.22.0
5
+
-[Terraform Provider Beta for GCP](https://github.com/terraform-providers/terraform-provider-google-beta) plugin >= 4.45.0
6
6
7
7
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
8
8
## Inputs
@@ -23,6 +23,7 @@ The following dependency must be available for SQL Server module:
23
23
| db\_name | The name of the default database to create |`string`|`"default"`| no |
24
24
| delete\_timeout | The optional timeout that is applied to limit long database deletes. |`string`|`"30m"`| no |
25
25
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. |`bool`|`true`| no |
26
+
| deny\_maintenance\_period | The Deny Maintenance Period fields to prevent automatic maintenance from occurring during a 90-day time period. See [more details](https://cloud.google.com/sql/docs/sqlserver/maintenance)| <pre>list(object({<br> end_date = string<br> start_date = string<br> time = string<br> }))</pre> |`[]`| no |
26
27
| disk\_autoresize | Configuration to increase storage size. |`bool`|`true`| no |
27
28
| disk\_autoresize\_limit | The maximum size to which storage can be auto increased. |`number`|`0`| no |
28
29
| disk\_size | The disk size for the master instance. |`number`|`10`| no |
description="The Deny Maintenance Period fields to prevent automatic maintenance from occurring during a 90-day time period. See [more details](https://cloud.google.com/sql/docs/sqlserver/maintenance)"
133
+
type=list(object({
134
+
end_date =string
135
+
start_date =string
136
+
time =string
137
+
}))
138
+
default=[]
139
+
}
140
+
131
141
variable"database_flags" {
132
142
description="The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/sqlserver/flags)"
| db\_name | The name of the default database to create |`string`|`"default"`| no |
21
21
| delete\_timeout | The optional timout that is applied to limit long database deletes. |`string`|`"10m"`| no |
22
22
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. |`bool`|`true`| no |
23
+
| deny\_maintenance\_period | The Deny Maintenance Period fields to prevent automatic maintenance from occurring during a 90-day time period. See [more details](https://cloud.google.com/sql/docs/mysql/maintenance)| <pre>list(object({<br> end_date = string<br> start_date = string<br> time = string<br> }))</pre> |`[]`| no |
23
24
| disk\_autoresize | Configuration to increase storage size |`bool`|`true`| no |
24
25
| disk\_autoresize\_limit | The maximum size to which storage can be auto increased. |`number`|`0`| no |
25
26
| disk\_size | The disk size for the master instance |`number`|`10`| no |
Copy file name to clipboardExpand all lines: modules/mysql/variables.tf
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,16 @@ variable "user_labels" {
149
149
description="The key/value labels for the master instances."
150
150
}
151
151
152
+
variable"deny_maintenance_period" {
153
+
description="The Deny Maintenance Period fields to prevent automatic maintenance from occurring during a 90-day time period. See [more details](https://cloud.google.com/sql/docs/mysql/maintenance)"
154
+
type=list(object({
155
+
end_date =string
156
+
start_date =string
157
+
time =string
158
+
}))
159
+
default=[]
160
+
}
161
+
152
162
variable"backup_configuration" {
153
163
description="The backup_configuration settings subblock for the database setings"
| db\_name | The name of the default database to create |`string`|`"default"`| no |
22
22
| delete\_timeout | The optional timout that is applied to limit long database deletes. |`string`|`"15m"`| no |
23
23
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. |`bool`|`true`| no |
24
+
| deny\_maintenance\_period | The Deny Maintenance Period fields to prevent automatic maintenance from occurring during a 90-day time period. See [more details](https://cloud.google.com/sql/docs/postgres/maintenance)| <pre>list(object({<br> end_date = string<br> start_date = string<br> time = string<br> }))</pre> |`[]`| no |
24
25
| disk\_autoresize | Configuration to increase storage size. |`bool`|`true`| no |
25
26
| disk\_autoresize\_limit | The maximum size to which storage can be auto increased. |`number`|`0`| no |
26
27
| disk\_size | The disk size for the master instance. |`number`|`10`| no |
0 commit comments