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_action_http" {
source="./modules/azurerm/r/azurerm_logic_app_action_http"# body - (optional) is a type of stringbody=null# headers - (optional) is a type of map of stringheaders={}
# logic_app_id - (required) is a type of stringlogic_app_id=null# method - (required) is a type of stringmethod=null# name - (required) is a type of stringname=null# uri - (required) is a type of stringuri=nullrun_after=[{
action_name =null
action_result =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_logic_app_action_http""this" {
# body - (optional) is a type of stringbody=var.body# headers - (optional) is a type of map of stringheaders=var.headers# logic_app_id - (required) is a type of stringlogic_app_id=var.logic_app_id# method - (required) is a type of stringmethod=var.method# name - (required) is a type of stringname=var.name# uri - (required) is a type of stringuri=var.uridynamic"run_after" {
for_each=var.run_aftercontent {
# action_name - (required) is a type of stringaction_name=run_after.value["action_name"]
# action_result - (required) is a type of stringaction_result=run_after.value["action_result"]
}
}
dynamic"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"]
}
}
}