What's Changed
[1.1.61] — 2026-04-10
Fixed
- EC2
DescribeTagsignores filters —DescribeTagsreturned every tag for every resource regardless ofFilterparameters. Terraform'saws_instanceresource sendsresource-idandkeyfilters when reading launch template tags; receiving unrelated tags caused "too many results: wanted 1, got 3". Now respectsresource-id,resource-type,key, andvaluefilters. Reported by @m7w. - EC2
DescribeTagsreturns wrongresourceType— resources with prefixesacl-,nat-,dopt-,eigw-,lt-,pl-,vgw-,cgw-,ami-,tgw-were returned as generic"resource"instead of their correct types (network-acl,natgateway,launch-template, etc.). Reported by @m7w. - Lambda container networking in DinD — when MiniStack runs inside a Docker container (DinD via socket mount),
127.0.0.1refers to the MiniStack container itself, not the Docker host where the Lambda container's port is mapped. WhenLAMBDA_DOCKER_NETWORKis set, Lambda invocations now resolve the container's IP on the shared network and connect directly on port 8080. Contributed by @DaviReisVieira. Fixes #228.