Skip to content

Commit

Permalink
fix: Fixed probes configuration on container app. (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone authored Dec 20, 2024
1 parent 7032dfe commit 4813dd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/terraform/container_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 4813dd3

Please sign in to comment.