v2.0.0
Breaking Changes — this release changes the format of two variables that you will need to update:
availability-zone
is removed and replaced by a list of subnet
definitions. You should update existing deployments like so:
- availability-zone = "us-east-1a"
+ subnets = [{ availability-zone = "us-east-1a", cidr-block = "10.0.0.0/16" }]
vpc-cidr-prefix
is removed and replaced by cidr-block
:
- vpc-cidr-prefix = "10.0"
+ cidr-block = "10.0.0.0/16"
What's Changed
- Support multiple subnets by @jacobwgillespie in #19
Full Changelog: v1.5.0...v2.0.0