From a75d7775c45c9cb91b82dc6eb8dd41d844bca33f Mon Sep 17 00:00:00 2001 From: Paco Hope Date: Mon, 16 Jan 2023 09:59:49 -0500 Subject: [PATCH] updated network number --- cdk/sfec2/sci_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk/sfec2/sci_stack.py b/cdk/sfec2/sci_stack.py index 78f0c81..97b20c8 100644 --- a/cdk/sfec2/sci_stack.py +++ b/cdk/sfec2/sci_stack.py @@ -61,7 +61,7 @@ class VpcBasisStack(cdk.Stack): allow_all_outbound=True, security_group_name='Sci-sg' ) self.SciSG.add_ingress_rule(peer=ec2.Peer.ipv4('173.79.190.162/32'), connection=ec2.Port.tcp(22), description="ssh in from home") - self.SciSG.add_ingress_rule(peer=ec2.Peer.ipv4('70.164.18.200/29'), + self.SciSG.add_ingress_rule(peer=ec2.Peer.ipv4('70.164.19.200/29'), connection=ec2.Port.tcp(22), description="ssh in from nova") self.SciSG.add_ingress_rule(peer=ec2.Peer.any_ipv6(), connection=ec2.Port.tcp(80), description="HTTP open to the world, ipv6")