Skip to content

Commit

Permalink
add missing ad rules
Browse files Browse the repository at this point in the history
  • Loading branch information
QBY-ChristianHartmann committed Apr 29, 2024
1 parent 2671d4a commit 01d84e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ resource "azurerm_firewall_policy_rule_collection_group" "this" {
destination_ip_groups = var.ipg_onpremise_dc_id != null ? [var.ipg_azure_dc_id, var.ipg_onpremise_dc_id] : [var.ipg_azure_dc_id]
destination_ports = [
"53", "88", "123", "135", "137", "138", "139",
"389", "445", "464", "636", "3268", "3269", "9389"
"389", "445", "464", "636", "3268", "3269", "9389", "49152-65535"
]
}
}
Expand All @@ -75,7 +75,7 @@ resource "azurerm_firewall_policy_rule_collection_group" "this" {

rule {
name = "allow-dc-to-dnsresolver-inbound"
protocols = ["UDP","TCP"]
protocols = ["UDP", "TCP"]
source_ip_groups = var.ipg_onpremise_dc_id != null ? [var.ipg_azure_dc_id, var.ipg_onpremise_dc_id] : [var.ipg_azure_dc_id]
destination_ip_groups = [var.ipg_dnsprivateresolver_id]
destination_ports = ["53"]
Expand Down

0 comments on commit 01d84e0

Please sign in to comment.