Skip to content

Commit fad3d08

Browse files
committed
wip
1 parent 8cfe1bd commit fad3d08

File tree

1 file changed

+4
-4
lines changed
  • infrastructure/modules/container-app

1 file changed

+4
-4
lines changed

infrastructure/modules/container-app/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ resource "azurerm_container_app" "main" {
111111
transport = "HTTP"
112112
path = var.probe_path
113113
port = var.exposed_port != null ? var.exposed_port : var.port
114-
interval_seconds = 5
114+
interval_seconds = 10
115115
timeout = 2
116-
failure_count_threshold = 2
116+
failure_count_threshold = 3
117117
}
118118
}
119119

@@ -124,9 +124,9 @@ resource "azurerm_container_app" "main" {
124124
transport = "HTTP"
125125
path = var.probe_path
126126
port = var.exposed_port != null ? var.exposed_port : var.port
127-
interval_seconds = 5
127+
interval_seconds = 10
128128
timeout = 2
129-
failure_count_threshold = 2
129+
failure_count_threshold = 3
130130
}
131131
}
132132
}

0 commit comments

Comments
 (0)