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_recurrence" {
source="./modules/azurerm/r/azurerm_logic_app_trigger_recurrence"# frequency - (required) is a type of stringfrequency=null# interval - (required) is a type of numberinterval=null# logic_app_id - (required) is a type of stringlogic_app_id=null# name - (required) is a type of stringname=null# start_time - (optional) is a type of stringstart_time=null# time_zone - (optional) is a type of stringtime_zone=nullschedule=[{
at_these_hours = []
at_these_minutes = []
on_these_days = []
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_logic_app_trigger_recurrence""this" {
# frequency - (required) is a type of stringfrequency=var.frequency# interval - (required) is a type of numberinterval=var.interval# logic_app_id - (required) is a type of stringlogic_app_id=var.logic_app_id# name - (required) is a type of stringname=var.name# start_time - (optional) is a type of stringstart_time=var.start_time# time_zone - (optional) is a type of stringtime_zone=var.time_zonedynamic"schedule" {
for_each=var.schedulecontent {
# at_these_hours - (optional) is a type of set of numberat_these_hours=schedule.value["at_these_hours"]
# at_these_minutes - (optional) is a type of set of numberat_these_minutes=schedule.value["at_these_minutes"]
# on_these_days - (optional) is a type of set of stringon_these_days=schedule.value["on_these_days"]
}
}
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"]
}
}
}