Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created November 30, 2019 16:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/76127862ea957278673eaa508387cf5a to your computer and use it in GitHub Desktop.
Save xximjasonxx/76127862ea957278673eaa508387cf5a to your computer and use it in GitHub Desktop.
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