Skip to content

Commit

Permalink
add application logging to web
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Jan 18, 2024
1 parent 3b2d60e commit 9458684
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/web/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "azurerm_linux_web_app" "frontend" {
}
}
application_logs {
file_system_level = "Verbose"
file_system_level = "Information"
}
}
https_only = true
Expand Down Expand Up @@ -59,6 +59,9 @@ resource "azurerm_linux_web_app" "cms" {
retention_in_mb = 100
}
}
application_logs {
file_system_level = "Information"
}
}
app_settings = {
PUBLIC_FRONTEND_URL = "https://${local.fqdn}"
Expand Down

0 comments on commit 9458684

Please sign in to comment.