mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
Add udp access to security group
This commit is contained in:
@ -12,6 +12,12 @@ resource "aws_security_group" "tpot" {
|
|||||||
protocol = "tcp"
|
protocol = "tcp"
|
||||||
cidr_blocks = ["0.0.0.0/0"]
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
}
|
}
|
||||||
|
ingress {
|
||||||
|
from_port = 0
|
||||||
|
to_port = 64000
|
||||||
|
protocol = "udp"
|
||||||
|
cidr_blocks = ["0.0.0.0/0"]
|
||||||
|
}
|
||||||
ingress {
|
ingress {
|
||||||
from_port = 64294
|
from_port = 64294
|
||||||
to_port = 64294
|
to_port = 64294
|
||||||
|
Reference in New Issue
Block a user