Skip to content

Commit

Permalink
fix: Fix typo in database timeout description (#166)
Browse files Browse the repository at this point in the history
* docs: fix typo in database timeout description

* docs: generate updated readme
  • Loading branch information
gadiener committed Dec 14, 2020
1 parent f3f323c commit 55f135f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/mssql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ The following dependency must be available for SQL Server module:
| authorized\_gae\_applications | The authorized gae applications for the Cloud SQL instances | list(string) | `<list>` | no |
| 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 |
| backup\_configuration | The database backup configuration. | object | `<map>` | no |
| create\_timeout | The optional timout that is applied to limit long database creates. | string | `"15m"` | no |
| create\_timeout | The optional timeout that is applied to limit long database creates. | string | `"15m"` | no |
| database\_flags | The database flags for the master instance. See [more details](https://cloud.google.com/sql/docs/sqlserver/flags) | object | `<list>` | no |
| 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 |
| db\_charset | The charset for the default database | string | `""` | no |
| db\_collation | The collation for the default database. Example: 'en_US.UTF8' | string | `""` | no |
| db\_name | The name of the default database to create | string | `"default"` | no |
| delete\_timeout | The optional timout that is applied to limit long database deletes. | string | `"30m"` | no |
| delete\_timeout | The optional timeout that is applied to limit long database deletes. | string | `"30m"` | no |
| deletion\_protection | Used to block Terraform from deleting a SQL Instance. | bool | `"true"` | no |
| disk\_autoresize | Configuration to increase storage size. | bool | `"true"` | no |
| disk\_size | The disk size for the master instance. | string | `"10"` | no |
Expand All @@ -39,7 +39,7 @@ The following dependency must be available for SQL Server module:
| region | The region of the Cloud SQL resources | string | `"us-central1"` | no |
| 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 |
| tier | The tier for the master instance. | string | `"db-custom-2-3840"` | no |
| update\_timeout | The optional timout that is applied to limit long database updates. | string | `"15m"` | no |
| update\_timeout | The optional timeout that is applied to limit long database updates. | string | `"15m"` | no |
| user\_labels | The key/value labels for the master instances. | map(string) | `<map>` | no |
| user\_name | The name of the default user | string | `"default"` | no |
| 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 |
Expand Down
6 changes: 3 additions & 3 deletions modules/mssql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -218,19 +218,19 @@ variable "root_password" {
}

variable "create_timeout" {
description = "The optional timout that is applied to limit long database creates."
description = "The optional timeout that is applied to limit long database creates."
type = string
default = "15m"
}

variable "update_timeout" {
description = "The optional timout that is applied to limit long database updates."
description = "The optional timeout that is applied to limit long database updates."
type = string
default = "15m"
}

variable "delete_timeout" {
description = "The optional timout that is applied to limit long database deletes."
description = "The optional timeout that is applied to limit long database deletes."
type = string
default = "30m"
}
Expand Down

0 comments on commit 55f135f

Please sign in to comment.