You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"azurerm_logic_app_workflow" {
source="./modules/azurerm/r/azurerm_logic_app_workflow"# integration_service_environment_id - (optional) is a type of stringintegration_service_environment_id=null# location - (required) is a type of stringlocation=null# logic_app_integration_account_id - (optional) is a type of stringlogic_app_integration_account_id=null# name - (required) is a type of stringname=null# parameters - (optional) is a type of map of stringparameters={}
# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
# workflow_schema - (optional) is a type of stringworkflow_schema=null# workflow_version - (optional) is a type of stringworkflow_version=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_logic_app_workflow""this" {
# integration_service_environment_id - (optional) is a type of stringintegration_service_environment_id=var.integration_service_environment_id# location - (required) is a type of stringlocation=var.location# logic_app_integration_account_id - (optional) is a type of stringlogic_app_integration_account_id=var.logic_app_integration_account_id# name - (required) is a type of stringname=var.name# parameters - (optional) is a type of map of stringparameters=var.parameters# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# tags - (optional) is a type of map of stringtags=var.tags# workflow_schema - (optional) is a type of stringworkflow_schema=var.workflow_schema# workflow_version - (optional) is a type of stringworkflow_version=var.workflow_versiondynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}
output"access_endpoint" {
description="returns a string"value=azurerm_logic_app_workflow.this.access_endpoint
}
output"connector_endpoint_ip_addresses" {
description="returns a list of string"value=azurerm_logic_app_workflow.this.connector_endpoint_ip_addresses
}
output"connector_outbound_ip_addresses" {
description="returns a list of string"value=azurerm_logic_app_workflow.this.connector_outbound_ip_addresses
}
output"id" {
description="returns a string"value=azurerm_logic_app_workflow.this.id
}
output"workflow_endpoint_ip_addresses" {
description="returns a list of string"value=azurerm_logic_app_workflow.this.workflow_endpoint_ip_addresses
}
output"workflow_outbound_ip_addresses" {
description="returns a list of string"value=azurerm_logic_app_workflow.this.workflow_outbound_ip_addresses
}
output"this" {
value=azurerm_logic_app_workflow.this
}