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 ?"

1 Antwort
0
Akzeptierte Antwort

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
beantwortet vor 7 Monaten
profile picture
EXPERTE
überprüft vor 2 Monaten
  • 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 .

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen