Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,45 @@ You will use a script to automate configuring your Azure resources.
location: location
properties: {
securityRules: [
{
name: 'AllowAzureCloudOutbound'
properties: {
protocol: 'TCP'
sourcePortRange: '*'
destinationPortRange: '443'
destinationAddressPrefix: 'AzureCloud'
access: 'Allow'
priority: 100
direction: 'Outbound'
destinationAddressPrefixes: []
}
}
{
name: 'AllowAzureADOutbound'
properties: {
protocol: 'TCP'
sourcePortRange: '*'
destinationPortRange: '443'
destinationAddressPrefix: 'AzureActiveDirectory'
access: 'Allow'
priority: 110
direction: 'Outbound'
destinationAddressPrefixes: []
}
}
{
name: 'AllowAzureFrontDoorOutbound'
properties: {
protocol: 'TCP'
sourcePortRange: '*'
destinationPortRange: '443'
destinationAddressPrefix: 'AzureFrontDoor.Frontend'
access: 'Allow'
priority: 120
direction: 'Outbound'
destinationAddressPrefixes: []
}
}
{
name: 'AllowVnetOutBoundOverwrite'
properties: {
Expand Down