Skip to content

Commit 1ae9cc2

Browse files
committed
wuip
1 parent fad3d08 commit 1ae9cc2

File tree

1 file changed

+4
-2
lines changed
  • infrastructure/modules/container-app

1 file changed

+4
-2
lines changed

infrastructure/modules/container-app/main.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ resource "azurerm_container_app" "main" {
112112
path = var.probe_path
113113
port = var.exposed_port != null ? var.exposed_port : var.port
114114
interval_seconds = 10
115+
initial_delay = 45
115116
timeout = 2
116117
failure_count_threshold = 3
117118
}
@@ -124,9 +125,10 @@ resource "azurerm_container_app" "main" {
124125
transport = "HTTP"
125126
path = var.probe_path
126127
port = var.exposed_port != null ? var.exposed_port : var.port
127-
interval_seconds = 10
128+
interval_seconds = 5
129+
initial_delay = 45
128130
timeout = 2
129-
failure_count_threshold = 3
131+
failure_count_threshold = 2
130132
}
131133
}
132134
}

0 commit comments

Comments
 (0)