We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad3d08 commit 1ae9cc2Copy full SHA for 1ae9cc2
infrastructure/modules/container-app/main.tf
@@ -112,6 +112,7 @@ resource "azurerm_container_app" "main" {
112
path = var.probe_path
113
port = var.exposed_port != null ? var.exposed_port : var.port
114
interval_seconds = 10
115
+ initial_delay = 45
116
timeout = 2
117
failure_count_threshold = 3
118
}
@@ -124,9 +125,10 @@ resource "azurerm_container_app" "main" {
124
125
transport = "HTTP"
126
127
- interval_seconds = 10
128
+ interval_seconds = 5
129
130
- failure_count_threshold = 3
131
+ failure_count_threshold = 2
132
133
134
0 commit comments