Closed hari-dotnet closed 1 year ago
Do we have current update on this? My current config doesnt work via terraform
resource "azurerm_logic_app_standard" "example" {
# name = "testflowazure"
location = var.rg_location
resource_group_name = var.rg_name
app_service_plan_id = azurerm_service_plan.example.id
storage_account_name = azurerm_storage_account.example.name
storage_account_access_key = azurerm_storage_account.example.primary_access_key
app_settings = {
"FUNCTIONS_WORKER_RUNTIME" = "node"
"WEBSITE_NODE_DEFAULT_VERSION" = "~14"
"FUNCTIONS_EXTENSION_VERSION" = "~4"
}
depends_on = [azurerm_service_plan.example, azurerm_storage_account.example]
}
I am trying to create logic app standard workflow project in visual studio code with .Net 6.0 and functions runtime v4 but getting the error "You must have the .Net Core SDK installed to perform this operation" and realize that Project Runtime setting doesn't have selection of 4 and default doesn't seem to work for latest version. Is there a way to use .Net 6.0 and functions runtime v4 with logic app standard project?
AB#15963074