adding customer website port
This commit is contained in:
parent
3eb312fd8c
commit
420469dc9e
1 changed files with 1 additions and 0 deletions
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue