|
| 1 | +# General Configuration - Azure Government |
| 2 | +location = "USGov Virginia" |
| 3 | +environment = "dev" |
| 4 | +project_name = "demo-app" |
| 5 | +azure_environment = "usgovernment" |
| 6 | + |
| 7 | +# Resource Group Configuration |
| 8 | +resource_group_name = "rg-demo-app-gov-dev" |
| 9 | + |
| 10 | +# Container Registry Configuration (must be globally unique) |
| 11 | +# Note: Azure Government ACR uses .azurecr.us domain |
| 12 | +container_registry_name = "acrdemoappgov001" |
| 13 | +container_registry_sku = "Basic" |
| 14 | + |
| 15 | +# App Service Plan Configuration |
| 16 | +app_service_plan_name = "asp-demo-app-gov-dev" |
| 17 | +app_service_plan_sku = "B1" |
| 18 | + |
| 19 | +# App Service Configuration (must be globally unique) |
| 20 | +# Note: Azure Government App Services use .azurewebsites.us domain |
| 21 | +app_service_name = "app-demo-gov-demo-001" |
| 22 | +app_service_always_on = true |
| 23 | +health_check_path = "/" |
| 24 | + |
| 25 | +# Docker Configuration |
| 26 | +docker_image_name = "my-app" |
| 27 | +docker_image_tag = "latest" |
| 28 | +websites_port = "80" |
| 29 | + |
| 30 | +# Additional App Settings (optional) |
| 31 | +additional_app_settings = { |
| 32 | + "NODE_ENV" = "production" |
| 33 | + "PORT" = "80" |
| 34 | + # Add any other environment variables your app needs |
| 35 | +} |
| 36 | + |
| 37 | +# Managed Identity Configuration |
| 38 | +# Set to true to use managed identity in addition to admin credentials |
| 39 | +enable_managed_identity_acr_access = true |
| 40 | + |
| 41 | +# Custom Domain Configuration (optional) |
| 42 | +# custom_domain = "your-domain.com" |
0 commit comments