We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 320d695 + 3cf0e0b commit fa75177Copy full SHA for fa75177
infrastructure/modules/container-apps/main.tf
@@ -38,7 +38,7 @@ module "webapp" {
38
environment_variables = merge(
39
local.common_env,
40
{
41
- ALLOWED_HOSTS = "${var.app_short_name}-web-${var.environment}.${var.default_domain}"
+ ALLOWED_HOSTS = "${var.app_short_name}-web-${var.environment}.${var.default_domain},localhost,127.0.0.1"
42
},
43
var.deploy_database_as_container ? local.container_db_env : local.azure_db_env
44
)
@@ -48,6 +48,8 @@ module "webapp" {
48
49
is_web_app = true
50
port = 8000
51
+ probe_path = "/healthcheck"
52
+
53
}
54
55
module "azurerm_application_insights_standard_web_test" {
0 commit comments