From 338e7164d369a5064a06312d28b6504d6320c79d Mon Sep 17 00:00:00 2001 From: Andy Miles Date: Tue, 3 Dec 2024 17:14:32 -0800 Subject: [PATCH] updated README.md --- terraform/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index 4d97787..386895b 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -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 {