Cloudformation VPC build out. How to get Secondary CIDR of a VPC in the output of cloudformation execution.

0

Hi team need one help, though its more related to VPC feature, but asking here as well since I am trying with CF template, if any one came accorss this need - "I am using cloudformation to deploy vpc with ipam integration and tgw attachment. vpc would have 2 CIDRs. Now i am able to call primary cidr with "!GetAtt VPC.CidrBlock" intrinsic function call but I am not able to call the secondary cidr . Is there any way I can call the secondary cidr too ? Any help here please ?"

已提問 7 個月前檢視次數 308 次
1 個回答
0
已接受的答案

Unfortunately I thinnk there is no direct way to reference the secondary CIDR blocks for a VPC when using IPAM and CloudFormation. However, here are two potential options:

Use a Custom Resource to call the DescribeIpams API after creation to lookup the IPAM ID for the VPC, then call GetIpamResourceCidrs to retrieve the secondary CIDRs. You could store these CIDR values in Parameters or Outputs.

Use a Custom Resource with AWS Lambda to call the EC2 ModifyVpcAttribute API after creation to tag the VPC with the secondary CIDRs. Then reference the tags in other resources that need the values.

profile pictureAWS
已回答 7 個月前
profile picture
專家
已審閱 2 個月前
  • Thanks Dave, later on i realized their is no straight forward way of doing it , so created lambda function s custom resource and call the "describe_vpc" api, fetched in vpc cidr ( index1 ) and then use that to pass in as parameter in the subnet creation module. this works. But thanks for replying that is also an option .

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南