Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions infra/terraform/env/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,9 @@ resource "azurerm_service_plan" "frontend" {
location = azurerm_resource_group.rg.location
resource_group_name = azurerm_resource_group.rg.name
os_type = "Linux"
sku_name = "F1"
tags = local.tags
# B1 is the lowest App Service tier that supports managed certificates for custom domains.
sku_name = "B1"
tags = local.tags
}

resource "azurerm_linux_web_app" "frontend" {
Expand Down
Loading