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_trigger_custom" {
source="./modules/azurerm/r/azurerm_logic_app_trigger_custom"# body - (required) is a type of stringbody=null# logic_app_id - (required) is a type of stringlogic_app_id=null# name - (required) is a type of stringname=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_logic_app_trigger_custom""this" {
# body - (required) is a type of stringbody=var.body# logic_app_id - (required) is a type of stringlogic_app_id=var.logic_app_id# name - (required) is a type of stringname=var.namedynamic"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"]
}
}
}