From 89f59eade222d7f7569d7b506f6e93c3e698721d Mon Sep 17 00:00:00 2001 From: shawngib Date: Tue, 19 Oct 2021 13:51:35 -0400 Subject: [PATCH 1/2] added missing privateDnsZoneId for storage in AMPLS --- src/bicep/modules/privateLink.bicep | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bicep/modules/privateLink.bicep b/src/bicep/modules/privateLink.bicep index d4f7f90f8..483afc074 100644 --- a/src/bicep/modules/privateLink.bicep +++ b/src/bicep/modules/privateLink.bicep @@ -96,6 +96,12 @@ resource dnsZonePrivateLinkEndpoint 'Microsoft.Network/privateEndpoints/privateD privateDnsZoneId: privatelink_agentsvc_azure_automation_net .id } } + { + name: 'storage' + properties: { + privateDnsZoneId: privatelink_blob_core_cloudapi_net.id + } + } ] } dependsOn: [ From 9789932daa8a17981b71032a5e7bf972c1e61a00 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 19 Oct 2021 18:02:41 +0000 Subject: [PATCH 2/2] GitHub Action: Build Bicep to JSON --- src/bicep/mlz.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/bicep/mlz.json b/src/bicep/mlz.json index 015373815..a9da81205 100644 --- a/src/bicep/mlz.json +++ b/src/bicep/mlz.json @@ -5,7 +5,7 @@ "_generator": { "name": "bicep", "version": "0.4.1008.15138", - "templateHash": "13476760732826675507" + "templateHash": "1945358306611262395" } }, "parameters": { @@ -1132,7 +1132,7 @@ "_generator": { "name": "bicep", "version": "0.4.1008.15138", - "templateHash": "12334361858927907885" + "templateHash": "1009610201033923691" } }, "parameters": { @@ -2189,7 +2189,7 @@ "_generator": { "name": "bicep", "version": "0.4.1008.15138", - "templateHash": "13842549561263775660" + "templateHash": "18251381868621303940" } }, "parameters": { @@ -2332,11 +2332,18 @@ "properties": { "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_agentsvc_azure_automation_name'))]" } + }, + { + "name": "storage", + "properties": { + "privateDnsZoneId": "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_blob_core_cloudapi_net_name'))]" + } } ] }, "dependsOn": [ "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_agentsvc_azure_automation_name'))]", + "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_blob_core_cloudapi_net_name'))]", "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_monitor_azure_name'))]", "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_ods_opinsights_azure_name'))]", "[resourceId('Microsoft.Network/privateDnsZones', variables('privateDnsZones_privatelink_oms_opinsights_azure_name'))]",