Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CyprienLecallier/4684ba1f1891971562be90f7cddec6b3 to your computer and use it in GitHub Desktop.
Save CyprienLecallier/4684ba1f1891971562be90f7cddec6b3 to your computer and use it in GitHub Desktop.
resource "azurerm_app_service_plan" "my_service_plan" {
name = "my_service_plan"
location = "France central"
resource_group_name = "MYRG"
kind = "Linux"
reserved = true
sku {
tier = "PremiumV2"
size = "P2v2"
capacity = "3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment