Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created November 5, 2019 18:41
Show Gist options
  • Select an option

  • Save mikhailshilkov/22e706b92276c4281792cfeb7f891fd6 to your computer and use it in GitHub Desktop.

Select an option

Save mikhailshilkov/22e706b92276c4281792cfeb7f891fd6 to your computer and use it in GitHub Desktop.
provider "azurerm" {
version = "~> 1.35"
}
resource "azurerm_resource_group" "test" {
name = "resourceGroup1"
location = "westeurope"
}
resource "azurerm_app_service_plan" "test" {
name = "sdafasgwg"
location = "${azurerm_resource_group.test.location}"
resource_group_name = "${azurerm_resource_group.test.name}"
sku {
tier = "Basic"
size = "B1"
}
}
resource "azurerm_app_service" "test" {
name = "safsadfaf"
location = "${azurerm_resource_group.test.location}"
resource_group_name = "${azurerm_resource_group.test.name}"
app_service_plan_id = "${azurerm_app_service_plan.test.id}"
app_settings = {
"SOME_KEY" = "some-value"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment