/
osbornray
/
PythonHacks
Обзор
Документация
Войти
/
osbornray
/
PythonHacks
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Terraform Tutorial Azure/AzureWebApp.tf
48 строк
1 KB
RekhuGopal
Terraform Tutorial Azure
18 сен 2021, 21:42
18 сен 2021, 21:42
342eb62
Код
Авторство
О чём код?
# Create a Resource Group resource "azurerm_resource_group" "appservice-rg" { name = "CloudQuickPoCs-RG001" location = "West US" tags = { description = "POCs Demo" environment = "POC" owner = "CloudQuickPoCs" } } # Create the App Service Plan resource "azurerm_app_service_plan" "service-plan" { name = "CloudQuickPoCs-Linux-service-plan-001" location = azurerm_resource_group.appservice-rg.location resource_group_name = azurerm_resource_group.appservice-rg.name kind = "Linux" reserved = true sku { tier = "Standard" size = "S1" } tags = { description = "POCs Demo" environment = "POC" owner = "CloudQuickPoCs" } } # Create the App Service resource "azurerm_app_service" "app-service" { name = "CloudQuickPoCs-Web-app-service-001" location = azurerm_resource_group.appservice-rg.location resource_group_name = azurerm_resource_group.appservice-rg.name app_service_plan_id = azurerm_app_service_plan.service-plan.id site_config { linux_fx_version = "DOTNETCORE|3.1" } tags = { description = "POCs Demo" environment = "POC" owner = "CloudQuickPoCs" } }