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:
committed by
GitHub
parent
1e06c35a1f
commit
01c7f806ce
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user