proud-noon-87466
08/25/2023, 5:55 PMaws:assumeRole:
roleArn: arn:aws:iam:...
However this role can't manage certain resources. I want to setup a new provider that uses my original privileged role to manage those resources. What's the best way to do that?stocky-restaurant-98004
08/26/2023, 12:25 AMaws:assumeRole
will be the default provider. If you explicitly create another provider, you can set `assumeRole`:
const awsProvider = new aws.Provider("explicit-provider", {
assumeRole: {
roleArn: "your-role-arn"
},
})
FullAdmin
perms).