pulumi/pulumi-cdk

Default for region and account

John0x opened this issue · 0 comments

Hey, is it possible to set/use defaults for region and account?
Natively with CDK you would just:

new TestStack(app, "TestStack", {
  env: {
    account: process.env.CDK_DEFAULT_ACCOUNT,
    region: process.env.CDK_DEFAULT_REGION,
  },
});