Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Modules/Utilities] Migrated PE from AVM + enabled UDT for nested resources #4109

Merged
merged 13 commits into from
Oct 19, 2023

This file was deleted.

20 changes: 8 additions & 12 deletions modules/network/private-endpoint/.test/common/main.test.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,16 @@ module testDeployment '../../main.bicep' = {
]
serviceResourceId: nestedDependencies.outputs.keyVaultResourceId
subnetResourceId: nestedDependencies.outputs.subnetResourceId
lock: 'CanNotDelete'
privateDnsZoneGroup: {
privateDNSResourceIds: [
nestedDependencies.outputs.privateDNSZoneResourceId
]
lock: {
kind: 'CanNotDelete'
}
privateDnsZoneResourceIds: [
nestedDependencies.outputs.privateDNSZoneResourceId
]
roleAssignments: [
{
roleDefinitionIdOrName: 'Reader'
principalIds: [
nestedDependencies.outputs.managedIdentityPrincipalId
]
principalId: nestedDependencies.outputs.managedIdentityPrincipalId
principalType: 'ServicePrincipal'
}
]
Expand All @@ -86,10 +84,8 @@ module testDeployment '../../main.bicep' = {
}
]
customNetworkInterfaceName: '${namePrefix}${serviceShort}001nic'
applicationSecurityGroups: [
{
id: nestedDependencies.outputs.applicationSecurityGroupResourceId
}
applicationSecurityGroupResourceIds: [
nestedDependencies.outputs.applicationSecurityGroupResourceId
]
tags: {
'hidden-title': 'This is visible in the resource name'
Expand Down
Loading
Loading