This message was deleted.
# general
s
This message was deleted.
b
if you set these in the config, you can't no - it's best to use env vars in these instances
b
I don't set the profile in the config
Copy code
config:
  aws:allowedAccountIds:
    - '12345'
  aws:assumeRole:
    roleArn: arn:aws:iam::12345:role/some-role
    sessionName: pulumi
  aws:region: us-east-1
actually the change seems to refer to a programatically set provider:
Copy code
const rootAccountProvider = new aws.Provider(
  'rootAccount',
  {
    allowedAccountIds: ['12345'],
    assumeRole: {
      roleArn: 'arn:aws:iam::12345:role/some-role',
      sessionName: 'pulumi',
    },
    profile: '', // <- doesn't help
  },
);
b
can you open an issue for this, i'm surprised this is happening
b
Absolutely 🙂