forked from aztfmod/terraform-azurerm-caf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
automation_schedules.tf
16 lines (12 loc) · 963 Bytes
/
automation_schedules.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module "automation_schedules" {
source = "./modules/automation/automation_schedule"
for_each = local.shared_services.automation_schedules
global_settings = local.global_settings
settings = each.value
resource_group_name = can(each.value.resource_group.name) || can(each.value.resource_group_name) ? try(each.value.resource_group.name, each.value.resource_group_name) : local.combined_objects_resource_groups[try(each.value.resource_group.lz_key, local.client_config.landingzone_key)][try(each.value.resource_group_key, each.value.resource_group.key)].name
client_config = local.client_config
automation_account_name = can(each.value.automation_account_name) ? each.value.automation_account_name : local.combined_objects_automations[try(each.value.lz_key, local.client_config.landingzone_key)][each.value.automation_account_key].name
}
output "automation_schedules" {
value = module.automation_schedules
}