bumpy-summer-9075
04/28/2021, 6:55 PMAWS_PROFILE
is locally different than a collegue's or even my CI, whenever I do a pulumi up
, the value in the stack changes and breaks my CI (which doesn't expect an aws profile to be set).
Do you want to perform this update? details
pulumi:pulumi:Stack: (same)
[urn=urn:...]
~ pulumi:providers:aws: (update)
[id=...]
[urn=urn:...]
+ profile : "mfa" <- no pls
billowy-army-68599
04/28/2021, 6:56 PMbumpy-summer-9075
04/28/2021, 6:57 PMconfig:
aws:allowedAccountIds:
- '12345'
aws:assumeRole:
roleArn: arn:aws:iam::12345:role/some-role
sessionName: pulumi
aws:region: us-east-1
const rootAccountProvider = new aws.Provider(
'rootAccount',
{
allowedAccountIds: ['12345'],
assumeRole: {
roleArn: 'arn:aws:iam::12345:role/some-role',
sessionName: 'pulumi',
},
profile: '', // <- doesn't help
},
);
billowy-army-68599
04/28/2021, 6:58 PMbumpy-summer-9075
04/28/2021, 6:58 PM