Back to Pulumi

V1.7.0

changelog/v1.7.0.md

3.244.0418 B
Original Source

1.7.0 (2019-12-11)

  • A Pulumi JavaScript/TypeScript program can now consist of a single exported top level function. This allows for an easy approach to create a Pulumi program that needs to perform async/await operations at the top-level. #3321

    ts
    // JavaScript
    module.exports = async () => {
    }
    
    //TypeScript
    export = async () => {
    }