How to access existing security group by tag using aws cdk?

0

I am creating a lambda function where I have added existing vpc (by tags) and private subnets. I want to add existing security group also to the lambda. Any idea how to access existing security by tags using cdk with typescript? Please help me with your valuable suggestions. Thank you in advance.

1回答
0

Hi,

To be transparent, I did not try this on your specific use case: lambda + sec group. But, I usually use CDK Construct.fromXXX() to achieve what you want to achieve here.

The section "How can I reference existing resources?" in this article https://garbe.io/blog/2019/09/20/hey-cdk-how-to-use-existing-resources/ explains it well with all possible options for "fromXXX()" with their differences.

It seems quite possible , see https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.SecurityGroup.html

If you have an existing security group you want to use in your CDK application, you would import it like this:

const securityGroup = ec2.SecurityGroup.fromSecurityGroupId(this, 'SG', 'sg-12345', {
  mutable: false
});

Best,

Didier

profile pictureAWS
エキスパート
回答済み 9ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ