Skip to content

Commit f981c4b

Browse files
rajbosCopilot
andcommitted
infra: increase managed cert create timeout to 60 minutes
The azurerm_container_app_environment_managed_certificate resource was timing out at the default 30-minute limit. Azure's CNAME-based managed certificate provisioning can take longer than 30 minutes. Increase the create timeout to 60 minutes so the workflow does not fail while waiting for DNS validation to complete. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent f87966c commit f981c4b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

sharing-server/infra/main.tf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,13 @@ resource "azurerm_container_app_environment_managed_certificate" "this" {
233233
lifecycle {
234234
create_before_destroy = true
235235
}
236+
237+
timeouts {
238+
create = "60m"
239+
read = "5m"
240+
update = "30m"
241+
delete = "30m"
242+
}
236243
}
237244

238245
# azurerm_container_app_custom_domain cannot be used here because it only accepts

0 commit comments

Comments
 (0)