Skip to content

Commit

Permalink
Adding matching UDP rules to SG
Browse files Browse the repository at this point in the history
  • Loading branch information
tfhartmann committed Apr 13, 2017
1 parent 566121c commit d5c7fda
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ resource "aws_security_group" "ecs" {
protocol = "tcp"
cidr_blocks = "${var.allowed_cidr_blocks}"
}

ingress {
from_port = 0
to_port = 65535
protocol = "udp"
cidr_blocks = "${var.allowed_cidr_blocks}"
}
egress {
from_port = 0
to_port = 0
Expand Down

0 comments on commit d5c7fda

Please sign in to comment.