Skip to content

Commit 55f135f

Browse files
authored
fix: Fix typo in database timeout description (#166)
* docs: fix typo in database timeout description * docs: generate updated readme
1 parent f3f323c commit 55f135f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

modules/mssql/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ The following dependency must be available for SQL Server module:
1515
| authorized\_gae\_applications | The authorized gae applications for the Cloud SQL instances | list(string) | `<list>` | no |
1616
| availability\_type | The availability type for the master instance.This is only used to set up high availability for the MSSQL instance. Can be either `ZONAL` or `REGIONAL`. | string | `"ZONAL"` | no |
1717
| backup\_configuration | The database backup configuration. | object | `<map>` | no |
18-
| create\_timeout | The optional timout that is applied to limit long database creates. | string | `"15m"` | no |
18+
| create\_timeout | The optional timeout that is applied to limit long database creates. | string | `"15m"` | no |
1919
| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/sqlserver/flags) | object | `<list>` | no |
2020
| database\_version | The database version to use: SQLSERVER_2017_STANDARD, SQLSERVER_2017_ENTERPRISE, SQLSERVER_2017_EXPRESS, or SQLSERVER_2017_WEB | string | `"SQLSERVER_2017_STANDARD"` | no |
2121
| db\_charset | The charset for the default database | string | `""` | no |
2222
| db\_collation | The collation for the default database. Example: 'en_US.UTF8' | string | `""` | no |
2323
| db\_name | The name of the default database to create | string | `"default"` | no |
24-
| delete\_timeout | The optional timout that is applied to limit long database deletes. | string | `"30m"` | no |
24+
| delete\_timeout | The optional timeout that is applied to limit long database deletes. | string | `"30m"` | no |
2525
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. | bool | `"true"` | no |
2626
| disk\_autoresize | Configuration to increase storage size. | bool | `"true"` | no |
2727
| disk\_size | The disk size for the master instance. | string | `"10"` | no |
@@ -39,7 +39,7 @@ The following dependency must be available for SQL Server module:
3939
| region | The region of the Cloud SQL resources | string | `"us-central1"` | no |
4040
| root\_password | MSSERVER password for the root user. If not set, a random one will be generated and available in the root_password output variable. | string | `""` | no |
4141
| tier | The tier for the master instance. | string | `"db-custom-2-3840"` | no |
42-
| update\_timeout | The optional timout that is applied to limit long database updates. | string | `"15m"` | no |
42+
| update\_timeout | The optional timeout that is applied to limit long database updates. | string | `"15m"` | no |
4343
| user\_labels | The key/value labels for the master instances. | map(string) | `<map>` | no |
4444
| user\_name | The name of the default user | string | `"default"` | no |
4545
| user\_password | The password for the default user. If not set, a random one will be generated and available in the generated_user_password output variable. | string | `""` | no |

modules/mssql/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,19 +218,19 @@ variable "root_password" {
218218
}
219219

220220
variable "create_timeout" {
221-
description = "The optional timout that is applied to limit long database creates."
221+
description = "The optional timeout that is applied to limit long database creates."
222222
type = string
223223
default = "15m"
224224
}
225225

226226
variable "update_timeout" {
227-
description = "The optional timout that is applied to limit long database updates."
227+
description = "The optional timeout that is applied to limit long database updates."
228228
type = string
229229
default = "15m"
230230
}
231231

232232
variable "delete_timeout" {
233-
description = "The optional timout that is applied to limit long database deletes."
233+
description = "The optional timeout that is applied to limit long database deletes."
234234
type = string
235235
default = "30m"
236236
}

0 commit comments

Comments
 (0)