Skip to content

Commit

Permalink
hard coding the port
Browse files Browse the repository at this point in the history
  • Loading branch information
caparker committed Jul 10, 2024
1 parent a027db2 commit 9483733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk/stacks/lambda_api_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __init__(
redis_security_group.add_ingress_rule(
peer=lambda_sec_group,
description="Allow Redis connection",
connection=aws_ec2.Port.tcp(redis_port),
connection=aws_ec2.Port.tcp(6379),
remote_rule=True,
)

Expand Down

0 comments on commit 9483733

Please sign in to comment.