From 9c690fe6a6d3682d44107a30dc28c5c516781320 Mon Sep 17 00:00:00 2001 From: Stefano Date: Thu, 22 May 2025 11:38:14 -0500 Subject: [PATCH] Fixed name on new ingress rule --- infrastructure/stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/stack.py b/infrastructure/stack.py index a63e470..2c51674 100644 --- a/infrastructure/stack.py +++ b/infrastructure/stack.py @@ -214,7 +214,7 @@ class IptvUpdaterStack(Stack): rds_sg.add_ingress_rule( ec2.Peer.ipv4("47.189.88.48/32"), # Replace with your actual IP ec2.Port.tcp(5432), - "Allow PostgreSQL access from developer's IP" + "Allow PostgreSQL access from developer IP" ) # Create RDS PostgreSQL instance (free tier compatible - db.t3.micro)