Skip to content

Commit

Permalink
fix: Corrected probes configuration. (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniotarricone authored Jan 3, 2025
1 parent 4813dd3 commit b04278c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/terraform/container_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -122,18 +122,17 @@ 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
timeout = 1
termination_grace_period_seconds = 120
}

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,12 +143,11 @@ 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
timeout = 1
termination_grace_period_seconds = 120
}
}

Expand Down

0 comments on commit b04278c

Please sign in to comment.