Skip to content

Commit

Permalink
chore: add quotes to string in probe config (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
and-mora authored Nov 19, 2024
1 parent 1d50530 commit d3e4838
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/terraform/container_app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ resource "azurerm_container_app" "rtp-activator" {

liveness_probe {
port = 8080
path = /actuator/health
transport = HTTP
path = "/actuator/health"
transport = "HTTP"
}

readiness_probe {
port = 8080
path = /actuator/health
transport = HTTP
path = "/actuator/health"
transport = "HTTP"
}

env {
Expand Down

0 comments on commit d3e4838

Please sign in to comment.