Skip to content

Commit a3fe63d

Browse files
committed
wuip
1 parent 1ae9cc2 commit a3fe63d

File tree

1 file changed

+3
-5
lines changed
  • infrastructure/modules/container-app

1 file changed

+3
-5
lines changed

infrastructure/modules/container-app/main.tf

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,9 @@ resource "azurerm_container_app" "main" {
111111
transport = "HTTP"
112112
path = var.probe_path
113113
port = var.exposed_port != null ? var.exposed_port : var.port
114-
interval_seconds = 10
115-
initial_delay = 45
114+
interval_seconds = 5
116115
timeout = 2
117-
failure_count_threshold = 3
116+
failure_count_threshold = 30
118117
}
119118
}
120119

@@ -126,9 +125,8 @@ resource "azurerm_container_app" "main" {
126125
path = var.probe_path
127126
port = var.exposed_port != null ? var.exposed_port : var.port
128127
interval_seconds = 5
129-
initial_delay = 45
130128
timeout = 2
131-
failure_count_threshold = 2
129+
failure_count_threshold = 30
132130
}
133131
}
134132
}

0 commit comments

Comments
 (0)