forked from aztfmod/terraform-azurerm-caf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcosmos_db.tf
executable file
·19 lines (17 loc) · 965 Bytes
/
cosmos_db.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module "cosmos_dbs" {
source = "./modules/databases/cosmos_dbs"
for_each = local.database.cosmos_dbs
location = lookup(each.value, "region", null) == null ? local.resource_groups[each.value.resource_group_key].location : local.global_settings.regions[each.value.region]
resource_group_name = local.resource_groups[each.value.resource_group_key].name
global_settings = local.global_settings
client_config = local.client_config
private_endpoints = try(each.value.private_endpoints, {})
resource_groups = try(each.value.private_endpoints, {}) == {} ? null : local.resource_groups
vnets = local.combined_objects_networking
settings = each.value
base_tags = try(local.global_settings.inherit_tags, false) ? local.resource_groups[each.value.resource_group_key].tags : {}
private_dns = local.combined_objects_private_dns
}
output "cosmos_dbs" {
value = module.cosmos_dbs
}