From 4813dd32440edf93d2c281afead67843a98dab13 Mon Sep 17 00:00:00 2001 From: Antonio Tarricone <110115827+antoniotarricone@users.noreply.github.com> Date: Fri, 20 Dec 2024 17:24:47 +0100 Subject: [PATCH] fix: Fixed probes configuration on container app. (#169) --- src/main/terraform/container_app.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/terraform/container_app.tf b/src/main/terraform/container_app.tf index f8b0b11..c4c9dc5 100644 --- a/src/main/terraform/container_app.tf +++ b/src/main/terraform/container_app.tf @@ -122,7 +122,7 @@ resource "azurerm_container_app" "auth" { liveness_probe { path = "/q/health/live" port = 8080 - transport = HTTP + transport = "http" initial_delay = 0 interval_seconds = 10 failure_count_threshold = 3 @@ -133,7 +133,7 @@ resource "azurerm_container_app" "auth" { readiness_probe { path = "/q/health/ready" port = 8080 - transport = HTTP + transport = "http" initial_delay = 0 interval_seconds = 10 failure_count_threshold = 3 @@ -144,7 +144,7 @@ resource "azurerm_container_app" "auth" { startup_probe { path = "/q/health/started" port = 8080 - transport = HTTP + transport = "http" initial_delay = 0 interval_seconds = 10 failure_count_threshold = 3