Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix VPC support for Auto subnet layout strategy (#1355)
The awsx.ec2.Vpc resource supports three subnet layout strategies: Auto, Exact, and Legacy. Consider the following program that does not specify the subnet specs: new awsx.ec2.Vpc("vpc", { subnetStrategy: "Auto", }); Prior to this change, the code would implicitly use the Legacy strategy for this program even though Auto is requested. This is now fixed. The Auto strategy already supports allocating subnets without any explicit specs provided.
- Loading branch information