Selectively enable logging in FAST and firewall policy module rules (#2032)

* use logging in firewall policy module examples

* enable logging for selected hierarchical firewall rules
This commit is contained in:
Ludovico Magnocavallo
2024-01-31 09:50:35 +01:00
committed by GitHub
parent 1e06c35a1f
commit 01c7f806ce
8 changed files with 17 additions and 8 deletions

View File

@@ -49,13 +49,15 @@ module "firewall-policy" {
}
}
mgmt = {
priority = 1001
priority = 1001
enable_logging = true
match = {
source_ranges = ["10.1.1.0/24"]
}
}
ssh = {
priority = 1002
priority = 1002
enable_logging = true
match = {
source_ranges = ["10.0.0.0/8"]
# source_tags = ["tagValues/123456"]
@@ -102,13 +104,15 @@ module "firewall-policy" {
}
}
mgmt = {
priority = 1001
priority = 1001
enable_logging = true
match = {
source_ranges = ["10.1.1.0/24"]
}
}
ssh = {
priority = 1002
priority = 1002
enable_logging = true
match = {
source_ranges = ["10.0.0.0/8"]
# source_tags = ["tagValues/123456"]