Skip to content

Commit

Permalink
fix CIDR notation
Browse files Browse the repository at this point in the history
  • Loading branch information
prism-admin committed Jul 20, 2023
1 parent 381f4bd commit 2aff5f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prism/agents/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def add_ingress_rule(self,
'IpProtocol': 'tcp',
'FromPort': 22,
'ToPort': 22,
'Ipv6Ranges': [{'CidrIpv6': f'{external_ip}'}]
'Ipv6Ranges': [{'CidrIpv6': f'{external_ip}/128'}]
},
]

Expand Down

0 comments on commit 2aff5f5

Please sign in to comment.