Skip to content

Commit 8309bc9

Browse files
committed
feat(specs): Add spec, tests and examples for panos_zone_protection_profile
1 parent 2409c24 commit 8309bc9

File tree

3 files changed

+10252
-0
lines changed

3 files changed

+10252
-0
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
resource "panos_zone_protection_profile" "example" {
2+
location = { ngfw = {} }
3+
name = "zpp1"
4+
description = "test description"
5+
asymmetric_path = "bypass"
6+
discard_icmp_error = true
7+
discard_icmp_frag = true
8+
discard_icmp_large_packet = true
9+
discard_icmp_ping_zero_id = true
10+
discard_ip_frag = true
11+
discard_ip_spoof = true
12+
discard_loose_source_routing = true
13+
discard_malformed_option = true
14+
discard_overlapping_tcp_segment_mismatch = true
15+
discard_record_route = true
16+
discard_security = true
17+
discard_stream_id = true
18+
discard_strict_source_routing = true
19+
discard_tcp_split_handshake = true
20+
discard_tcp_syn_with_data = true
21+
discard_tcp_synack_with_data = true
22+
discard_timestamp = true
23+
discard_unknown_option = true
24+
flood = {
25+
icmp = {
26+
enable = true
27+
red = {
28+
activate_rate = 100
29+
alarm_rate = 200
30+
maximal_rate = 300
31+
}
32+
}
33+
icmpv6 = {
34+
enable = true
35+
red = {
36+
activate_rate = 100
37+
alarm_rate = 200
38+
maximal_rate = 300
39+
}
40+
}
41+
other_ip = {
42+
enable = true
43+
red = {
44+
activate_rate = 100
45+
alarm_rate = 200
46+
maximal_rate = 300
47+
}
48+
}
49+
tcp_syn = {
50+
enable = true
51+
syn_cookies = {
52+
activate_rate = 100
53+
alarm_rate = 200
54+
maximal_rate = 300
55+
}
56+
}
57+
udp = {
58+
enable = true
59+
red = {
60+
activate_rate = 100
61+
alarm_rate = 200
62+
maximal_rate = 300
63+
}
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)