We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741cd44 commit 123d51fCopy full SHA for 123d51f
main.tf
@@ -79,6 +79,14 @@ data "aws_iam_policy_document" "ecs_autoscale_assume_role" {
79
resource "aws_security_group" "container_instance" {
80
vpc_id = "${var.vpc_id}"
81
82
+ egress {
83
+ from_port = 0
84
+ to_port = 0
85
+ protocol = "-1"
86
+ cidr_blocks = [
87
+ "0.0.0.0/0"]
88
+ }
89
+
90
tags {
91
Name = "sgContainerInstance"
92
Project = "${var.project}"
0 commit comments