Skip to content

Commit

Permalink
feat: increased timeout to 30m to support micro instances also. (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisiddhu committed Feb 21, 2023
1 parent 250d170 commit 5ed6288
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions modules/mssql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,13 @@ variable "root_password" {
variable "create_timeout" {
description = "The optional timeout that is applied to limit long database creates."
type = string
default = "15m"
default = "30m"
}

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

variable "delete_timeout" {
Expand Down
6 changes: 3 additions & 3 deletions modules/mysql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -333,19 +333,19 @@ variable "additional_users" {
variable "create_timeout" {
description = "The optional timout that is applied to limit long database creates."
type = string
default = "10m"
default = "30m"
}

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

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

variable "encryption_key_name" {
Expand Down
6 changes: 3 additions & 3 deletions modules/postgresql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -323,19 +323,19 @@ variable "iam_user_emails" {
variable "create_timeout" {
description = "The optional timout that is applied to limit long database creates."
type = string
default = "15m"
default = "30m"
}

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

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

variable "encryption_key_name" {
Expand Down
6 changes: 3 additions & 3 deletions modules/safer_mysql/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -288,19 +288,19 @@ variable "additional_users" {
variable "create_timeout" {
description = "The optional timout that is applied to limit long database creates."
type = string
default = "15m"
default = "30m"
}

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

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

variable "module_depends_on" {
Expand Down

0 comments on commit 5ed6288

Please sign in to comment.