Skip to content

Commit

Permalink
rebase with TI white list
Browse files Browse the repository at this point in the history
  • Loading branch information
saisujithreddym committed Apr 29, 2020
2 parents 4bc590e + 130fea7 commit 8d11e41
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
"properties": {
"provisioningState": "Succeeded",
"threatIntelMode": "Alert",
"threatIntelWhitelist": {
"ipAddresses": [
"20.3.4.5"
],
"fqdns": [
"*.microsoft.com"
]
},
"ruleGroups": [
{
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleGroups/ruleGroup1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@
},
"location": "West US",
"properties": {
"threatIntelMode": "Alert"
"threatIntelMode": "Alert",
"threatIntelWhitelist": {
"ipAddresses": [
"20.3.4.5"
],
"fqdns": [
"*.microsoft.com"
]
}
}
}
},
Expand All @@ -28,6 +36,14 @@
"properties": {
"provisioningState": "Succeeded",
"threatIntelMode": "Alert",
"threatIntelWhitelist": {
"ipAddresses": [
"20.3.4.5"
],
"fqdns": [
"*.microsoft.com"
]
},
"ruleGroups": [
{
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleGroups/rulegroup1"
Expand All @@ -53,6 +69,14 @@
"properties": {
"provisioningState": "Succeeded",
"threatIntelMode": "Alert",
"threatIntelWhitelist": {
"ipAddresses": [
"20.3.4.5"
],
"fqdns": [
"*.microsoft.com"
]
},
"ruleGroups": [
{
"id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleGroups/ruleGroup1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,10 @@
"description": "The operation mode for Threat Intelligence.",
"$ref": "./azureFirewall.json#/definitions/AzureFirewallThreatIntelMode"
},
"threatIntelWhitelist": {
"description": "ThreatIntel Whitelist for Firewall Policy.",
"$ref": "#/definitions/FirewallPolicyThreatIntelWhitelist"
},
"intrusionSystemMode": {
"description": "The operation mode for Intrusion system.",
"$ref": "#/definitions/FirewallPolicyIntrusionSystemMode"
Expand Down Expand Up @@ -1070,6 +1074,26 @@
"name": "FirewallPolicyIntrusionSystemMode",
"modelAsString": true
}
},
"FirewallPolicyThreatIntelWhitelist": {
"description": "ThreatIntel Whitelist for Firewall Policy.",
"x-ms-discriminator-value": "FirewallPolicyThreatIntelWhitelist",
"properties": {
"ipAddresses": {
"type": "array",
"description": "List of IP addresses for the ThreatIntel Whitelist.",
"items": {
"type": "string"
}
},
"fqdns": {
"type": "array",
"description": "List of FQDNs for the ThreatIntel Whitelist.",
"items": {
"type": "string"
}
}
}
}
}
}

0 comments on commit 8d11e41

Please sign in to comment.