sparse-intern-71089
02/01/2023, 1:11 AMbillowy-army-68599
purple-megabyte-83002
02/01/2023, 10:59 AMimport * as aws from '@pulumi/aws';
import * as pulumi from '@pulumi/pulumi';
const awsCfg = new pulumi.Config('aws');
const usEast1AwsProvider = new aws.Provider(`us-east-1-aws-provider`, {
assumeRole: awsCfg.requireObject('assumeRole'),
region: 'us-east-1',
});
export default usEast1AwsProvider;
melodic-tomato-39005
02/01/2023, 3:33 PM“@pulumi/pulumi”: “~3.53.1",but the stack trace says
/home/runner/go/pkg/mod/github.com/pulumi/pulumi/sdk/v3@v3.48.0That doesn’t seem quite right. Maybe there’s a mismatch?
purple-megabyte-83002
02/01/2023, 4:22 PMapply()
to await the needed object helped me solve the issue. thank youmelodic-tomato-39005
02/01/2023, 4:23 PM