What's Changed
New Contributors
- @D-artisan made their first contribution in #968
- @dashitongzhi made their first contribution in #964
[1.3.67] — 2026-06-24
Added
- CloudFormation / API Gateway —
AWS::ApiGateway::RestApiimports an OpenAPIBody— a REST API defined inline through theBodyproperty now materializes its paths, methods, andx-amazon-apigateway-integrationblocks as real resources, methods, and integrations, covering the basic SAM-transform Swagger 2.0 + Lambda-proxy shape. Partial support; authorization, request/response validation, and most extensions are not yet handled. Contributed by @maximoosemine. - EC2 — IAM instance profile association APIs —
AssociateIamInstanceProfile,DescribeIamInstanceProfileAssociations,ReplaceIamInstanceProfileAssociation, andDisassociateIamInstanceProfileare now implemented; launch-time associations are backfilled and cleared on termination, so Terraform'saws_instanceiam_instance_profileround-trips without drift. Contributed by @D-artisan.
Changed
- Docs — clarified that the AWS SAM transform macro is not supported —
Transform: AWS::Serverless-2016-10-31is not expanded, so a SAM template still needs the CDK/CloudFormation-synthesized form; the README now points to the IaC docs and MiniStack MCP for current guidance. Contributed by @dashitongzhi.
Fixed
- Cognito — OAuth2 token endpoint no longer consumes the authorization code on a failed client-secret check — a bad or absent client secret consumed the one-time code before failing, so a client that authenticates in two steps (HTTP Basic, then a
client_secret_postfallback, as Go/Vault does) gotinvalid_granton the retry. The client credentials are now validated before the code is consumed, so HTTP Basic client authentication succeeds. Reported by @pny-nc. - API Gateway v1 — literal path segments resolve ahead of a
{param}sibling regardless of creation order — a literal path (e.g./users/verifyUserEmail) returned 405 when a{id}sibling under the same parent was registered first, because resolution followed resource-creation order instead of AWS specificity. Resolution now orders literal >{param}>{proxy+}. Reported by @ethan-dyas438. - RDS Data API —
:nameplaceholders are substituted by whole token — the earlier substring replacement could corrupt an unrelated longer token (a:idparameter ate into a literal:identity) and was fragile around::typecasts. Substitution is now a single token-aware pass, keeping:1/:10distinct, leaving::jsonbcasts intact, and passing through any:wordthat is not a supplied parameter. Reported by @awilson9.