如何通过地形将逻辑应用程序链接到集成服务环境



我尝试通过terraform设置逻辑应用程序,但没有通过terraform脚本将逻辑应用程序链接到集成服务环境

首先创建一个ISE并将id传递给工作流资源:

resource "azurerm_resource_group" "example" {
name     = "rg-ise-workflows"
location = "West Europe"
}
resource "azurerm_integration_service_environment" "example" {
name                 = "example-ise"
location             = azurerm_resource_group.example.location
resource_group_name  = azurerm_resource_group.example.name
// Removed other variables for readability
}
resource "azurerm_logic_app_workflow" "example" {
name                               = "workflow1"
location                           = azurerm_resource_group.example.location
resource_group_name                = azurerm_resource_group.example.name
integration_service_environment_id = azurerm_integration_service_environment.example.id
}

最新更新