This message was deleted.
# aws
s
This message was deleted.
s
aws:assumeRole
will be the default provider. If you explicitly create another provider, you can set `assumeRole`:
Copy code
const awsProvider = new aws.Provider("explicit-provider", {
    assumeRole: {
        roleArn: "your-role-arn"
    },
})
Ideally, you probably want a single role that can create resources in any account you want to use Pulumi with (with
FullAdmin
perms).
Alternatively, you may want to do a role per stack with perms to create anything that stack would involve.