From d63fa115aaabdd9eb054302cdd65968eb1b08627 Mon Sep 17 00:00:00 2001 From: Fabien <45980621+FabienGilbert@users.noreply.github.com> Date: Wed, 31 Aug 2022 18:55:11 +0000 Subject: [PATCH] fixed subnetPrivateEndpointNetworkPolicies error (#742) --- src/bicep/add-ons/tier3/tier3.bicep | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bicep/add-ons/tier3/tier3.bicep b/src/bicep/add-ons/tier3/tier3.bicep index 531b7f806..36cf14e32 100644 --- a/src/bicep/add-ons/tier3/tier3.bicep +++ b/src/bicep/add-ons/tier3/tier3.bicep @@ -113,7 +113,7 @@ var workloadNetworkSecurityGroupName = replace(networkSecurityGroupNamingConvent var workloadSubnetName = replace(subnetNamingConvention, nameToken, workloadName) var defaultTags = { - 'DeploymentType': 'MissionLandingZoneARM' + DeploymentType: 'MissionLandingZoneARM' } var calculatedTags = union(tags, defaultTags) @@ -153,6 +153,7 @@ module spokeNetwork '../../core/spoke-network.bicep' = { subnetName: workloadSubnetName subnetAddressPrefix: subnetAddressPrefix subnetServiceEndpoints: subnetServiceEndpoints + subnetPrivateEndpointNetworkPolicies: 'Enabled' } }