adding customer website port

This commit is contained in:
vickytechkey 2026-08-14 19:04:20 +05:30
parent 3eb312fd8c
commit 420469dc9e

View file

@ -44,6 +44,7 @@ export class AwsCdkStack extends cdk.Stack {
// Django App Backends (Prod and Beta) - Open to public so frontend users can connect
securityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.tcp(8080), 'Allow Django Beta Backend (Public)');
securityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.tcp(8090), 'Allow Django Production Backend (Public)');
securityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.tcp(8082), 'Allow Django Customer Backend (Public)');
// pgAdmin 4 Web UI - Open to public
securityGroup.addIngressRule(ec2.Peer.anyIpv4(), ec2.Port.tcp(5050), 'Allow pgAdmin 4 Web UI IPv4');