Skip to content

Commit 885173f

Browse files
committed
feat(specs): Add spec, tests and examples for panos_dos_protection_profile
1 parent 80b927e commit 885173f

File tree

3 files changed

+1517
-0
lines changed

3 files changed

+1517
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
resource "panos_dos_protection_profile" "example" {
2+
location = {
3+
device_group = {
4+
name = "my_device_group"
5+
}
6+
}
7+
name = "example-profile"
8+
description = "test description"
9+
disable_override = "no"
10+
type = "aggregate"
11+
resource = {
12+
sessions = {
13+
enabled = true
14+
max_concurrent_limit = 1234
15+
}
16+
}
17+
flood = {
18+
icmp = {
19+
enable = true
20+
red = {
21+
activate_rate = 123
22+
alarm_rate = 1234
23+
block = {
24+
duration = 12345
25+
}
26+
maximal_rate = 123456
27+
}
28+
}
29+
tcp_syn = {
30+
enable = true
31+
red = {
32+
activate_rate = 123
33+
alarm_rate = 1234
34+
block = {
35+
duration = 12345
36+
}
37+
maximal_rate = 123456
38+
}
39+
}
40+
}
41+
}

0 commit comments

Comments
 (0)