-
Notifications
You must be signed in to change notification settings - Fork 103
Comparing changes
Open a pull request
base repository: pulumi/pulumi-awsx
base: v2.13.0
head repository: pulumi/pulumi-awsx
compare: v2.14.0
- 12 commits
- 97 files changed
- 4 contributors
Commits on Jul 2, 2024
-
Auto generate Release Notes (#1339)
This updates the github workflows to auto generate release notes. Additionally it bumps softprops/action-gh-release to v2.
Configuration menu - View commit details
-
Copy full SHA for 9c3a4ed - Browse repository at this point
Copy the full SHA 9c3a4edView commit details
Commits on Jul 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 67cf165 - Browse repository at this point
Copy the full SHA 67cf165View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ff417f - Browse repository at this point
Copy the full SHA 0ff417fView commit details
Commits on Jul 15, 2024
-
Update pulumi/pulumi version to v3.124.0 (#1344)
Upgrading pulumi/pkg and pulumi/sdk to version v3.124.0.
Configuration menu - View commit details
-
Copy full SHA for 46640db - Browse repository at this point
Copy the full SHA 46640dbView commit details
Commits on Jul 22, 2024
-
Update pulumi/pulumi version to v3.125.0 (#1346)
Upgrading pulumi/pkg and pulumi/sdk to version v3.125.0.
Configuration menu - View commit details
-
Copy full SHA for 2eec008 - Browse repository at this point
Copy the full SHA 2eec008View commit details
Commits on Aug 1, 2024
-
Update pulumi/pulumi version to v3.127.0 (#1351)
Upgrading pulumi/pkg and pulumi/sdk to version v3.127.0.
Configuration menu - View commit details
-
Copy full SHA for be9f2f8 - Browse repository at this point
Copy the full SHA be9f2f8View commit details
Commits on Aug 2, 2024
-
refactor: clarify how Vpc subnet allocators are chosen (#1354)
The case analysis around picking which allocator to use is made more explicit and covered with a unit test.
Configuration menu - View commit details
-
Copy full SHA for f23e076 - Browse repository at this point
Copy the full SHA f23e076View commit details
Commits on Aug 5, 2024
-
Update pulumi/pulumi version to v3.127.0 (#1356)
Upgrading pulumi/pkg and pulumi/sdk to version v3.127.0.
Configuration menu - View commit details
-
Copy full SHA for 82ec192 - Browse repository at this point
Copy the full SHA 82ec192View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 6fb976e - Browse repository at this point
Copy the full SHA 6fb976eView commit details
Commits on Aug 6, 2024
-
Upgrade AWS provider to v6.47.0 (#1353)
Routine dependency upgrade: upgrade AWS provider to v6.47.0. Fixes #1347
Configuration menu - View commit details
-
Copy full SHA for 6942b02 - Browse repository at this point
Copy the full SHA 6942b02View commit details -
Increase AWS token timeout from 1h to 2h (#1357)
This is to avoid the tests failing due to the token expiring. Newly introduced IPAM-based tests are long running due to a known issue with slow deletions of aws.ec2.Vpc, see pulumi/pulumi-aws#4346
Configuration menu - View commit details
-
Copy full SHA for 44d871d - Browse repository at this point
Copy the full SHA 44d871dView commit details
Commits on Aug 7, 2024
-
Permit aws.ec2.Vpc to use IPAM-allocated cidrBlock ranges (#1352)
Fixes issues with supporting the ipv4IpamPoolId parameter that ties a VPC to an IPAM pool. You should now be able to write the following to allows IPAM to allocate and manage a cidrBlock range. The VPC component now uses that dynamically allocated block to automatically configure subnets. ```typescript new awsx.ec2.Vpc("myVpc", { ipv4IpamPoolId: myVpcIpamPool.id, ipv4NetmaskLength: 24, subnetStrategy: "Auto", }); ``` It is also possible to constrain the allocated subnets with subnetSpecs, while still using IPAM to manage the overall cidrBlock range: ```typescript new awsx.ec2.Vpc("myVpc", { numberOfAvailabilityZones: 3, subnetStrategy: "Auto", ipv4IpamPoolId: myVpcIpamPool.id, ipv4NetmaskLength: 22, subnetSpecs: [ { type: "Private", name: "private", cidrMask: 25, }, { type: "Public", name: "public", cidrMask: 27, }, ], tags: tags, }); ``` Fixes #872 Note that `subnetStrategy: "Auto"` is required with this functionality, and "Legacy" strategy is not supported.
Configuration menu - View commit details
-
Copy full SHA for b805061 - Browse repository at this point
Copy the full SHA b805061View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.13.0...v2.14.0