Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
proquickly committed Dec 4, 2024
1 parent f94a259 commit 338e716
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ resource "aws_instance" "py_server" {
Name = "FlaskAppInstance"
}

vpc_security_group_ids = [aws_security_group.allow_http1.id]
vpc_security_group_ids = [aws_security_group.allow_http.id]
}

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

ingress {
Expand Down

0 comments on commit 338e716

Please sign in to comment.