skip to Main Content

Azure CLI – invalid .NET runtime version

Our pipeline on Azure DevOps which has been working suddenly fails when running the Azure CLI command: az functionapp config set name "appname" --resource-group "groupname" --slot "slot" --net-framework-version v7.0 The error it produces is Invalid version: for runtime dotnet-isolated and…

VIEW QUESTION

Add Existing Virtual Network to Function App Creation -Terraform Azure

#access existing application insight data "azurerm_application_insights" "dev"{ name = var.tf_var_app_insights_name resource_group_name = var.tf_var_rg_name } #################step-1 function app creation data "azurerm_service_plan" "dev" { name = var.tf_var_app_service_plan resource_group_name = var.tf_var_rg_name } data "azurerm_storage_account" "dev" { name = var.tfvarstname resource_group_name = var.tf_var_rg_name }…

VIEW QUESTION
Back To Top
Search