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_automation_job_schedule" {
source="./modules/azurerm/r/azurerm_automation_job_schedule"# automation_account_name - (required) is a type of stringautomation_account_name=null# job_schedule_id - (optional) is a type of stringjob_schedule_id=null# parameters - (optional) is a type of map of stringparameters={}
# resource_group_name - (required) is a type of stringresource_group_name=null# run_on - (optional) is a type of stringrun_on=null# runbook_name - (required) is a type of stringrunbook_name=null# schedule_name - (required) is a type of stringschedule_name=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_automation_job_schedule""this" {
# automation_account_name - (required) is a type of stringautomation_account_name=var.automation_account_name# job_schedule_id - (optional) is a type of stringjob_schedule_id=var.job_schedule_id# 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# run_on - (optional) is a type of stringrun_on=var.run_on# runbook_name - (required) is a type of stringrunbook_name=var.runbook_name# schedule_name - (required) is a type of stringschedule_name=var.schedule_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"]
}
}
}