Skip to content

Commit

Permalink
Add security group rule for Console (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
kbatuigas authored Aug 15, 2024
1 parent 85ba7ae commit 03092f6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/networking/pages/aws-privatelink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,12 @@ aws ec2 authorize-security-group-ingress --region $REGION --profile $PROFILE \
--group-id $SECURITY_GROUP_ID --protocol "tcp" \
--port 30282 \
--cidr 0.0.0.0/0
# Allow Redpanda Console connection
aws ec2 authorize-security-group-ingress --region $REGION --profile $PROFILE \
--group-id $SECURITY_GROUP_ID \
--protocol "tcp" \
--port 443-443 \
--cidr 0.0.0.0/0
# Adjust the port 32094 if the Redpanda broker count is not 3.
aws ec2 authorize-security-group-ingress --region $REGION --profile $PROFILE \
--group-id $SECURITY_GROUP_ID \
Expand Down

0 comments on commit 03092f6

Please sign in to comment.