157 lines
5.6 KiB
HCL
157 lines
5.6 KiB
HCL
# Dependent resources for Azure Machine Learning
|
|
resource "azurerm_application_insights" "default" {
|
|
name = "appi-${var.name}-${var.environment}"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
application_type = "web"
|
|
}
|
|
|
|
resource "azurerm_key_vault" "default" {
|
|
name = "kv-${var.name}-${var.environment}"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
tenant_id = data.azurerm_client_config.current.tenant_id
|
|
sku_name = "premium"
|
|
purge_protection_enabled = false
|
|
|
|
network_acls {
|
|
default_action = "Deny"
|
|
bypass = "AzureServices"
|
|
}
|
|
}
|
|
|
|
resource "azurerm_storage_account" "default" {
|
|
name = "st${var.name}${var.environment}"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
account_tier = "Standard"
|
|
account_replication_type = "GRS"
|
|
|
|
network_rules {
|
|
default_action = "Deny"
|
|
bypass = ["AzureServices"]
|
|
}
|
|
}
|
|
|
|
resource "azurerm_container_registry" "default" {
|
|
name = "cr${var.name}${var.environment}"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
sku = "Premium"
|
|
admin_enabled = true
|
|
}
|
|
|
|
# Machine Learning workspace
|
|
resource "azurerm_machine_learning_workspace" "default" {
|
|
name = "mlw-${var.name}-${var.environment}"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
application_insights_id = azurerm_application_insights.default.id
|
|
key_vault_id = azurerm_key_vault.default.id
|
|
storage_account_id = azurerm_storage_account.default.id
|
|
container_registry_id = azurerm_container_registry.default.id
|
|
|
|
identity {
|
|
type = "SystemAssigned"
|
|
}
|
|
}
|
|
|
|
# Private endpoints
|
|
resource "azurerm_private_endpoint" "kv_ple" {
|
|
name = "ple-${var.name}-${var.environment}-kv"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
subnet_id = azurerm_subnet.mlsubnet.id
|
|
|
|
private_dns_zone_group {
|
|
name = "private-dns-zone-group"
|
|
private_dns_zone_ids = [azurerm_private_dns_zone.dnsvault.id]
|
|
}
|
|
|
|
private_service_connection {
|
|
name = "psc-${var.name}-kv"
|
|
private_connection_resource_id = azurerm_key_vault.default.id
|
|
subresource_names = [ "vault" ]
|
|
is_manual_connection = false
|
|
}
|
|
}
|
|
|
|
resource "azurerm_private_endpoint" "st_ple_blob" {
|
|
name = "ple-${var.name}-${var.environment}-st-blob"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
subnet_id = azurerm_subnet.mlsubnet.id
|
|
|
|
private_dns_zone_group {
|
|
name = "private-dns-zone-group"
|
|
private_dns_zone_ids = [azurerm_private_dns_zone.dnsstorageblob.id]
|
|
}
|
|
|
|
private_service_connection {
|
|
name = "psc-${var.name}-st"
|
|
private_connection_resource_id = azurerm_storage_account.default.id
|
|
subresource_names = [ "blob" ]
|
|
is_manual_connection = false
|
|
}
|
|
}
|
|
|
|
resource "azurerm_private_endpoint" "storage_ple_file" {
|
|
name = "ple-${var.name}-${var.environment}-st-file"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
subnet_id = azurerm_subnet.mlsubnet.id
|
|
|
|
private_dns_zone_group {
|
|
name = "private-dns-zone-group"
|
|
private_dns_zone_ids = [azurerm_private_dns_zone.dnsstoragefile.id]
|
|
}
|
|
|
|
private_service_connection {
|
|
name = "psc-${var.name}-st"
|
|
private_connection_resource_id = azurerm_storage_account.default.id
|
|
subresource_names = [ "file" ]
|
|
is_manual_connection = false
|
|
}
|
|
}
|
|
|
|
resource "azurerm_private_endpoint" "cr_ple" {
|
|
name = "ple-${var.name}-${var.environment}-cr"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
subnet_id = azurerm_subnet.mlsubnet.id
|
|
|
|
private_dns_zone_group {
|
|
name = "private-dns-zone-group"
|
|
private_dns_zone_ids = [azurerm_private_dns_zone.dnscontainerregistry.id]
|
|
}
|
|
|
|
private_service_connection {
|
|
name = "psc-${var.name}-cr"
|
|
private_connection_resource_id = azurerm_container_registry.default.id
|
|
subresource_names = [ "registry" ]
|
|
is_manual_connection = false
|
|
}
|
|
}
|
|
|
|
resource "azurerm_private_endpoint" "mlw_ple" {
|
|
name = "ple-${var.name}-${var.environment}-mlw"
|
|
location = azurerm_resource_group.default.location
|
|
resource_group_name = azurerm_resource_group.default.name
|
|
subnet_id = azurerm_subnet.mlsubnet.id
|
|
|
|
private_dns_zone_group {
|
|
name = "private-dns-zone-group"
|
|
private_dns_zone_ids = [
|
|
azurerm_private_dns_zone.dnsazureml.id,
|
|
azurerm_private_dns_zone.dnsnotebooks.id
|
|
]
|
|
}
|
|
|
|
private_service_connection {
|
|
name = "psc-${var.name}-mlw"
|
|
private_connection_resource_id = azurerm_machine_learning_workspace.default.id
|
|
subresource_names = [ "amlworkspace" ]
|
|
is_manual_connection = false
|
|
}
|
|
|
|
} |