This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
Releases: smoketurner/serverless-vpc-plugin
Releases · smoketurner/serverless-vpc-plugin
Bug fix release
Fixed #483 - thanks for reporting @PetroccoCo!
v1.0.0
BREAKING CHANGES
- Renamed
LambdaExecutionSecurityGroup
toAppSecurityGroup
- The
AppSecurityGroup
only allows HTTPS ingress and egress by default- If an S3 VPC Endpoint is created,
AppSecurityGroup
also allows HTTP egress just to S3
- If an S3 VPC Endpoint is created,
- The VPC default security group's egress rule is modified to only permit outbound access to itself (see Remove Default Rule)
- Removed the
LambdaEndpointSecurityGroup
security group in favor of using theAppSecurityGroup
for VPC Interface Endpoints
NEW FEATURES
- Ability to create SSM parameters by specifying
createParameters: true
in thecustom.vpcConfig
options (see example usage) - A
DHCPOptionsSet
is now created and attached to the VPC
OTHER CHANGES
- Replaced usages of
Fn::Join
withFn::Sub
to make the generated CloudFormation template more readable
Bug fix release
Fixed #243 - only output subnet groups if more than one subnet
v0.9.6
Fix public route issue
Fixes #147 (Thanks @homes2001 for reporting and @solsglasses for the fix!)