From 03092f6bd7bf836f2312a0910740e380fd8fabad Mon Sep 17 00:00:00 2001 From: Kat Batuigas <36839689+kbatuigas@users.noreply.github.com> Date: Thu, 15 Aug 2024 15:22:09 -0400 Subject: [PATCH] Add security group rule for Console (#27) --- modules/networking/pages/aws-privatelink.adoc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/networking/pages/aws-privatelink.adoc b/modules/networking/pages/aws-privatelink.adoc index fdde9494..d160562c 100644 --- a/modules/networking/pages/aws-privatelink.adoc +++ b/modules/networking/pages/aws-privatelink.adoc @@ -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 \