Skip to content

v1.0.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@pulumi-bot pulumi-bot released this 10 May 17:54
· 309 commits to master since this release
3d599fa

This release contains significant fixes found during the v1.0.0-beta.1 release. These are:

  • Provider validation aroundCIDR block calculation and NAT gateways now work as expected
  • VPC outputs are now required outputs and no longer need to be checked for undefined
  • Provider now supports Pulumi AWS v5.4.0
  • Automatically deduce the VPC ID from subnetIds when no VPC ID is passed
  • Go SDK now supports chaining
    trail, err := cloudtrail.NewTrail(ctx, "test-trail-go", &cloudtrail.TrailArgs{
        IncludeGlobalServiceEvents: pulumi.Bool(false),
        EnableLogging:              pulumi.Bool(true),
    })
    if err != nil {
        return err
    }
    
    ctx.Export("bucketName", trail.Bucket.Bucket())
    ctx.Export("bucketArn", trail.Bucket.Arn())