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

Microsoft Entra ID rebranding #238

Merged
merged 1 commit into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solutions/azure-hub-spoke-connected-group/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -2587,7 +2587,7 @@
"kind": "Custom",
"properties": {
"access": "AlwaysAllow",
"description": "Always allow outbound traffic to Azure Active Directory",
"description": "Always allow outbound traffic to Microsoft Entra ID",
"destinationPortRanges": [
"0-65535"
],
Expand All @@ -2614,7 +2614,7 @@
"[resourceId('Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections', format('avnm-{0}', parameters('location')), format('sg-{0}', parameters('location')), format('rc-{0}', parameters('location')))]"
],
"metadata": {
"description": "This example rule always allows outbound traffic to Azure Active Directory, overriding NSG outbound restrictions"
"description": "This example rule always allows outbound traffic to Microsoft Entra ID, overriding NSG outbound restrictions"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,14 +288,14 @@ resource rule3 'Microsoft.Network/networkManagers/securityAdminConfigurations/ru
}
}

@description('This example rule always allows outbound traffic to Azure Active Directory, overriding NSG outbound restrictions')
@description('This example rule always allows outbound traffic to Microsoft Entra ID, overriding NSG outbound restrictions')
resource rule4 'Microsoft.Network/networkManagers/securityAdminConfigurations/ruleCollections/rules@2023-04-01' = {
name: 'r-alwaysallow-${location}'
kind: 'Custom'
parent: rulesCollection
properties: {
access: 'AlwaysAllow'
description: 'Always allow outbound traffic to Azure Active Directory'
description: 'Always allow outbound traffic to Microsoft Entra ID'
destinationPortRanges: [ '0-65535' ]
destinations: [
{
Expand Down