mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-01 04:22:11 +00:00
Add udp access to security group
This commit is contained in:
parent
4d8149846b
commit
a5236d518f
1 changed files with 6 additions and 0 deletions
|
@ -12,6 +12,12 @@ resource "aws_security_group" "tpot" {
|
|||
protocol = "tcp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
ingress {
|
||||
from_port = 0
|
||||
to_port = 64000
|
||||
protocol = "udp"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
ingress {
|
||||
from_port = 64294
|
||||
to_port = 64294
|
||||
|
|
Loading…
Reference in a new issue