This repository has been archived by the owner on Jun 26, 2023. It is now read-only.
forked from aztfmod/terraform-azurerm-caf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
machine_learning.tf
39 lines (33 loc) · 2.82 KB
/
machine_learning.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
30
31
32
33
34
35
36
37
38
39
module "machine_learning_workspaces" {
source = "./modules/analytics/machine_learning"
for_each = local.database.machine_learning_workspaces
client_config = local.client_config
resource_groups = local.combined_objects_resource_groups
global_settings = local.global_settings
settings = each.value
vnets = local.combined_objects_networking
storage_account_id = lookup(each.value, "storage_account_key") == null ? null : module.storage_accounts[each.value.storage_account_key].id
keyvault_id = lookup(each.value, "keyvault_key") == null ? null : module.keyvaults[each.value.keyvault_key].id
application_insights_id = lookup(each.value, "application_insights_key") == null ? null : module.azurerm_application_insights[each.value.application_insights_key].id
container_registry_id = can(each.value.container_registry_id) || can(each.value.container_registry_key) == false ? try(each.value.container_registry_id, null) : local.combined_objects_container_registry[try(each.value.lz_key, local.client_config.landingzone_key)][each.value.container_registry_key].id
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, {}) : {}
}
output "machine_learning_workspaces" {
value = module.machine_learning_workspaces
}
module "machine_learning_compute_instance" {
source = "./modules/analytics/machine_learning_compute_instance"
for_each = local.compute.machine_learning_compute_instance
global_settings = local.global_settings
client_config = local.client_config
settings = each.value
location = can(local.global_settings.regions[each.value.region]) ? local.global_settings.regions[each.value.region] : 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)].location
remote_objects = {
managed_identities = local.combined_objects_managed_identities
machine_learning_workspace_id = can(each.value.machine_learning_workspace.id) ? each.value.machine_learning_workspace.id : local.combined_objects_machine_learning[try(each.value.machine_learning_workspace.lz_key, local.client_config.landingzone_key)][each.value.machine_learning_workspace.key].id
subnet_resource_id = can(each.value.subnet.id) ? each.value.subnet.id : local.combined_objects_networking[try(each.value.subnet.lz_key, local.client_config.landingzone_key)][each.value.subnet.vnet_key].subnets[each.value.subnet.key].id
}
}
output "machine_learning_compute_instance" {
value = module.machine_learning_compute_instance
}