Merge pull request #5 from denniseik/ryhud

updating notebooks Private DNS Zone
This commit is contained in:
Dennis Eikelenboom 2021-09-17 12:14:51 -07:00 committed by GitHub
commit 725e6e13f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {