Skip to content

Commit ee15e75

Browse files
committed
fix uppercase for other transports
1 parent b985fad commit ee15e75

File tree

1 file changed

+3
-3
lines changed
  • infrastructure/adminservices-test/altinn-apim-test-rg

1 file changed

+3
-3
lines changed

infrastructure/adminservices-test/altinn-apim-test-rg/backend.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ resource "azurerm_container_app" "container_app" {
6060
failure_count_threshold = 10
6161
timeout = 1
6262
port = 8080
63-
transport = "http"
63+
transport = "HTTP"
6464
}
6565
readiness_probe {
6666
path = "/swagger/swagger.json"
@@ -70,7 +70,7 @@ resource "azurerm_container_app" "container_app" {
7070
success_count_threshold = 1
7171
timeout = 1
7272
port = 8080
73-
transport = "http"
73+
transport = "HTTP"
7474
}
7575
liveness_probe {
7676
path = "/swagger/swagger.json"
@@ -79,7 +79,7 @@ resource "azurerm_container_app" "container_app" {
7979
failure_count_threshold = 3
8080
timeout = 1
8181
port = 8080
82-
transport = "http"
82+
transport = "HTTP"
8383
}
8484
}
8585
min_replicas = 0

0 commit comments

Comments
 (0)