Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created November 30, 2019 16:36
Embed
What would you like to do?
resource "azurerm_app_service_plan" "plan" {
name = "${var.app_name}-premiumPlan"
resource_group_name = "${data.azurerm_resource_group.rg.name}"
location = "${data.azurerm_resource_group.rg.location}"
kind = "Linux"
reserved = true
sku {
tier = "Premium"
size = "P1V2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment