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
go
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())