From d556e0eeb852557a50688aa664547f1db46bfb4d Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 16 Oct 2024 14:16:34 -0700 Subject: [PATCH] bump GET timeout to 60m --- operations/app/terraform/modules/storage/main.tf | 14 ++++++++++++++ .../app/terraform/modules/storage/~inputs.tf | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) 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" {