forked from aztfmod/terraform-azurerm-caf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
container_registry.tf
30 lines (24 loc) · 1.36 KB
/
container_registry.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module "container_registry" {
source = "./modules/compute/container_registry"
for_each = local.compute.azure_container_registries
global_settings = local.global_settings
client_config = local.client_config
name = each.value.name
admin_enabled = try(each.value.admin_enabled, false)
sku = try(each.value.sku, "Basic")
tags = try(each.value.tags, {})
network_rule_set = try(each.value.network_rule_set, {})
vnets = local.combined_objects_networking
georeplications = try(each.value.georeplications, {})
diagnostics = local.combined_diagnostics
diagnostic_profiles = try(each.value.diagnostic_profiles, {})
private_endpoints = try(each.value.private_endpoints, {})
base_tags = try(local.global_settings.inherit_tags, false) ? try(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)].tags, {}) : {}
private_dns = local.combined_objects_private_dns
resource_groups = local.combined_objects_resource_groups
settings = each.value
public_network_access_enabled = try(each.value.public_network_access_enabled, "true")
}
output "azure_container_registries" {
value = module.container_registry
}