updating notebooks Private DNS Zone

This commit is contained in:
ryhud 2021-09-17 09:40:41 -04:00
parent ca36cf3e5d
commit 40a0e273fa
2 changed files with 2 additions and 5 deletions

View File

@ -93,7 +93,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "vnetlinkml" {
} }
resource "azurerm_private_dns_zone" "dnsnotebooks" { resource "azurerm_private_dns_zone" "dnsnotebooks" {
name = "privatelink.azureml.notebooks.net" name = "privatelink.notebooks.azure.net"
resource_group_name = azurerm_resource_group.default.name resource_group_name = azurerm_resource_group.default.name
} }

View File

@ -141,10 +141,7 @@ resource "azurerm_private_endpoint" "mlw_ple" {
private_dns_zone_group { private_dns_zone_group {
name = "private-dns-zone-group" name = "private-dns-zone-group"
private_dns_zone_ids = [ private_dns_zone_ids = [azurerm_private_dns_zone.dnsazureml.id, azurerm_private_dns_zone.dnsnotebooks.id]
azurerm_private_dns_zone.dnsazureml.id,
azurerm_private_dns_zone.dnsnotebooks.id
]
} }
private_service_connection { private_service_connection {