Skip to content

Commit

Permalink
Enable intrusion detection (IDPS) by default (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
brooke-hamilton authored Dec 3, 2021
1 parent 52aeca1 commit 894aaea
Show file tree
Hide file tree
Showing 4 changed files with 100 additions and 7 deletions.
15 changes: 15 additions & 0 deletions src/bicep/mlz.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ module hubNetwork './modules/hubNetwork.bicep' = {
firewallSkuTier: firewallSkuTier
firewallPolicyName: firewallPolicyName
firewallThreatIntelMode: firewallThreatIntelMode
firewallIntrusionDetectionMode: firewallIntrusionDetectionMode
firewallDiagnosticsLogs: firewallDiagnosticsLogs
firewallDiagnosticsMetrics: firewallDiagnosticsMetrics
firewallClientIpConfigurationName: firewallClientIpConfigurationName
Expand Down Expand Up @@ -349,7 +350,21 @@ param firewallName string = 'firewall'
param firewallManagementSubnetAddressPrefix string = '10.0.100.64/26'
param firewallClientSubnetAddressPrefix string = '10.0.100.0/26'
param firewallPolicyName string = 'firewall-policy'

@allowed([
'Alert'
'Deny'
'Off'
])
param firewallThreatIntelMode string = 'Alert'

@allowed([
'Alert'
'Deny'
'Off'
])
param firewallIntrusionDetectionMode string = 'Alert'

param firewallDiagnosticsLogs array = [
{
category: 'AzureFirewallApplicationRule'
Expand Down
61 changes: 55 additions & 6 deletions src/bicep/mlz.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1008.15138",
"templateHash": "15227849893402646033"
"templateHash": "10286368957514163169"
}
},
"parameters": {
Expand Down Expand Up @@ -132,7 +132,21 @@
},
"firewallThreatIntelMode": {
"type": "string",
"defaultValue": "Alert"
"defaultValue": "Alert",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"firewallIntrusionDetectionMode": {
"type": "string",
"defaultValue": "Alert",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"firewallDiagnosticsLogs": {
"type": "array",
Expand Down Expand Up @@ -1134,6 +1148,9 @@
"firewallThreatIntelMode": {
"value": "[parameters('firewallThreatIntelMode')]"
},
"firewallIntrusionDetectionMode": {
"value": "[parameters('firewallIntrusionDetectionMode')]"
},
"firewallDiagnosticsLogs": {
"value": "[parameters('firewallDiagnosticsLogs')]"
},
Expand Down Expand Up @@ -1202,7 +1219,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1008.15138",
"templateHash": "13599565970900573060"
"templateHash": "5914406162434941149"
}
},
"parameters": {
Expand Down Expand Up @@ -1285,7 +1302,20 @@
"type": "string"
},
"firewallThreatIntelMode": {
"type": "string"
"type": "string",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"firewallIntrusionDetectionMode": {
"type": "string",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"firewallDiagnosticsLogs": {
"type": "array"
Expand Down Expand Up @@ -2101,6 +2131,9 @@
"threatIntelMode": {
"value": "[parameters('firewallThreatIntelMode')]"
},
"intrusionDetectionMode": {
"value": "[parameters('firewallIntrusionDetectionMode')]"
},
"clientIpConfigurationName": {
"value": "[parameters('firewallClientIpConfigurationName')]"
},
Expand Down Expand Up @@ -2139,7 +2172,7 @@
"_generator": {
"name": "bicep",
"version": "0.4.1008.15138",
"templateHash": "16515753424142002553"
"templateHash": "6929052309016745644"
}
},
"parameters": {
Expand All @@ -2158,7 +2191,20 @@
"type": "string"
},
"threatIntelMode": {
"type": "string"
"type": "string",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"intrusionDetectionMode": {
"type": "string",
"allowedValues": [
"Alert",
"Deny",
"Off"
]
},
"clientIpConfigurationName": {
"type": "string"
Expand Down Expand Up @@ -2204,6 +2250,9 @@
"tags": "[parameters('tags')]",
"properties": {
"threatIntelMode": "[parameters('threatIntelMode')]",
"intrusionDetection": {
"mode": "[parameters('intrusionDetectionMode')]"
},
"sku": {
"tier": "[parameters('skuTier')]"
}
Expand Down
16 changes: 16 additions & 0 deletions src/bicep/modules/firewall.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,21 @@ param location string = resourceGroup().location
param tags object = {}

param skuTier string

@allowed([
'Alert'
'Deny'
'Off'
])
param threatIntelMode string

@allowed([
'Alert'
'Deny'
'Off'
])
param intrusionDetectionMode string

param clientIpConfigurationName string
param clientIpConfigurationSubnetResourceId string
param clientIpConfigurationPublicIPAddressResourceId string
Expand All @@ -27,6 +40,9 @@ resource firewallPolicy 'Microsoft.Network/firewallPolicies@2021-02-01' = {
tags: tags
properties: {
threatIntelMode: threatIntelMode
intrusionDetection:{
mode: intrusionDetectionMode
}
sku: {
tier: skuTier
}
Expand Down
15 changes: 14 additions & 1 deletion src/bicep/modules/hubNetwork.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,20 @@ param routeTableRouteNextHopType string = 'VirtualAppliance'
param firewallName string
param firewallSkuTier string
param firewallPolicyName string

@allowed([
'Alert'
'Deny'
'Off'
])
param firewallThreatIntelMode string

@allowed([
'Alert'
'Deny'
'Off'
])
param firewallIntrusionDetectionMode string
param firewallDiagnosticsLogs array
param firewallDiagnosticsMetrics array
param firewallClientIpConfigurationName string
Expand Down Expand Up @@ -201,7 +214,7 @@ module firewall './firewall.bicep' = {

firewallPolicyName: firewallPolicyName
threatIntelMode: firewallThreatIntelMode

intrusionDetectionMode: firewallIntrusionDetectionMode
clientIpConfigurationName: firewallClientIpConfigurationName
clientIpConfigurationSubnetResourceId: '${virtualNetwork.outputs.id}/subnets/${firewallClientSubnetName}'
clientIpConfigurationPublicIPAddressResourceId: firewallClientPublicIPAddress.outputs.id
Expand Down

0 comments on commit 894aaea

Please sign in to comment.