Skip to content

Commit 725e6e1

Browse files
authored
Merge pull request microsoft#5 from denniseik/ryhud
updating notebooks Private DNS Zone
2 parents a420a37 + 40a0e27 commit 725e6e1

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

quickstart/201-machine-learning-moderately-secure/network.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ resource "azurerm_private_dns_zone_virtual_network_link" "vnetlinkml" {
9393
}
9494

9595
resource "azurerm_private_dns_zone" "dnsnotebooks" {
96-
name = "privatelink.azureml.notebooks.net"
96+
name = "privatelink.notebooks.azure.net"
9797
resource_group_name = azurerm_resource_group.default.name
9898
}
9999

quickstart/201-machine-learning-moderately-secure/workspace.tf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,7 @@ resource "azurerm_private_endpoint" "mlw_ple" {
141141

142142
private_dns_zone_group {
143143
name = "private-dns-zone-group"
144-
private_dns_zone_ids = [
145-
azurerm_private_dns_zone.dnsazureml.id,
146-
azurerm_private_dns_zone.dnsnotebooks.id
147-
]
144+
private_dns_zone_ids = [azurerm_private_dns_zone.dnsazureml.id, azurerm_private_dns_zone.dnsnotebooks.id]
148145
}
149146

150147
private_service_connection {

0 commit comments

Comments
 (0)