SG용 Cloudformation

SG용 Cloudformation

아래 SG의 vpc ID를 하드 코딩하지 않고 cloudformation을 사용하여 여러 VPC에 대해 SG를 생성해야 합니다. 아래는 하드 코딩된 vpc를 사용한 예이지만 매핑이나 다른 로직에서 VPC ID를 얻을 수 있는 방법이 있습니까?

MySecurityGroup:
     Type: AWS::EC2::SecurityGroup
     Properties:
       GroupDescription: My Security Group
       VpcId:
         - VpcId1
         - VpcId2
         - VpcId3
       SecurityGroupEgress:
         - IpProtocol: -1
           CidrIp: 0.0.0.0/0

관련 정보