Skip to content

Commit

Permalink
trying cleanup steps
Browse files Browse the repository at this point in the history
  • Loading branch information
proquickly committed Dec 8, 2024
1 parent 02a8ba1 commit 5acdf92
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,22 +89,3 @@ resource "aws_instance" "py_server" {
aws_security_group.allow_http.id, aws_security_group.allow_ssh.id
]
}

resource "aws_security_group" "allow_http" {
name = "allow_http_flask_web_app"
description = "Allow inbound HTTP traffic"

ingress {
from_port = 5000
to_port = 5000
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}

egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}

0 comments on commit 5acdf92

Please sign in to comment.