Delete 'azure-functionapps.tf'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2022-05-18 01:12:50 +02:00
parent d5e05f76d2
commit 5eb56b7bb8
1 changed files with 0 additions and 28 deletions

View File

@ -1,28 +0,0 @@
resource "azurerm_storage_account" "sa-hanyadikhet-functionapp" {
name = "sahanyadikhetfunctionapp"
resource_group_name = azurerm_resource_group.rg-hanyadikhet-functionapp.name
location = azurerm_resource_group.rg-hanyadikhet-functionapp.location
account_tier = "Standard"
account_replication_type = "LRS"
}
resource "azurerm_service_plan" "sp-hanyadikhet-functionapp" {
name = "sp-hanyadikhet-functionapp"
resource_group_name = azurerm_resource_group.rg-hanyadikhet-functionapp.name
location = azurerm_resource_group.rg-hanyadikhet-functionapp.location
os_type = "Linux"
sku_name = "Y1"
}
resource "azurerm_linux_function_app" "fa-hanyadikhet" {
name = "fa-hanyadikhet"
resource_group_name = azurerm_resource_group.rg-hanyadikhet-functionapp.name
location = azurerm_resource_group.rg-hanyadikhet-functionapp.location
storage_account_name = azurerm_storage_account.sa-hanyadikhet-functionapp.name
service_plan_id = azurerm_service_plan.sp-hanyadikhet-functionapp.id
https_only = true
site_config { }
}