This message was deleted.
# general
s
This message was deleted.
r
After doing more tests I was able to isolate the problem to the custom provider for
us-east-1
. I need to give it the aws-profile of my stack-config:
Copy code
const awsConfig = new pulumi.Config('aws');
const awsProfile = awsConfig.get('profile');

const awsUsEast1 = new aws.Provider('aws-provider-us-east-1', {
  region: 'us-east-1',
  profile: awsProfile,
});
Would be great to mention this in the "Configuring AWS API Gateway" guide to spare some debugging time for others 😉