1 Answer
- Newest
- Most votes
- Most comments
0
This appears to be a case sensitivity issue between CloudFormation and the IPAM API, which is causing the validation to fail incorrectly. The error occurs because CloudFormation is doing a direct string comparison between:
- The parent pool's address family (returned as "ipv4" in lowercase)
- The template specification (using "IPv4" with different capitalization)
To resolve this issue, you could try:
- In your CloudFormation template, specify the AddressFamily as "ipv4" (lowercase) instead of "IPv4"
- If that doesn't work, you might need to file a support case with AWS as this appears to be a CloudFormation service issue where it's not handling case-insensitive comparison properly
This type of issue is something AWS should handle internally, and you may want to report it through AWS support or raise it on the AWS CloudFormation GitHub issues page as it appears to be a bug in how CloudFormation handles the IPAM API integration.
answered a year ago
Relevant content
asked a year ago
asked 11 days ago
