Skip to content

Commit

Permalink
feat(terraform): enable app service storage
Browse files Browse the repository at this point in the history
Azure will manage the /home directory and restore it when the app restarts
  • Loading branch information
thekaveman committed Jun 13, 2024
1 parent 64db833 commit 6587a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/app_service.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ resource "azurerm_linux_web_app" "main" {
app_settings = {
"DOCKER_REGISTRY_SERVER_URL" = "https://ghcr.io/"
"WEBSITE_TIME_ZONE" = "America/Los_Angeles",
"WEBSITES_ENABLE_APP_SERVICE_STORAGE" = "false",
"WEBSITES_ENABLE_APP_SERVICE_STORAGE" = "true",
"WEBSITES_PORT" = "8000",

"ANALYTICS_KEY" = local.is_dev ? null : "${local.secret_prefix}analytics-key)",
Expand Down

0 comments on commit 6587a7d

Please sign in to comment.