diff --git a/operations/app/terraform/modules/storage/main.tf b/operations/app/terraform/modules/storage/main.tf index d3413e15b75..1170df1cf1b 100644 --- a/operations/app/terraform/modules/storage/main.tf +++ b/operations/app/terraform/modules/storage/main.tf @@ -196,6 +196,13 @@ resource "azurerm_storage_account" "storage_public" { tags = { environment = var.environment } + + timeouts { + create = var.timeout_create + read = var.timeout_read + delete = var.timeout_delete + update = var.timeout_update + } } resource "azurerm_storage_share" "gh_locks" { @@ -251,6 +258,13 @@ resource "azurerm_storage_account" "storage_partner" { tags = { environment = var.environment } + + timeouts { + create = var.timeout_create + read = var.timeout_read + delete = var.timeout_delete + update = var.timeout_update + } } # Grant the storage account Key Vault access, to access encryption keys diff --git a/operations/app/terraform/modules/storage/~inputs.tf b/operations/app/terraform/modules/storage/~inputs.tf index f2d7b91d68c..092cdf1acb7 100644 --- a/operations/app/terraform/modules/storage/~inputs.tf +++ b/operations/app/terraform/modules/storage/~inputs.tf @@ -70,7 +70,7 @@ variable "timeout_create" { variable "timeout_read" { description = "Timeout for read operations" type = string - default = "615m" # module default 5m + default = "60m" # module default 5m } variable "timeout_update" {