This message was deleted.
# general
s
This message was deleted.
w
Often when I see a hanging pulumi up it’s because one is using AWS credentials that have expired. Could this be the case here?
❤️ 1
s
it could well be. I'll check
l
Copy code
var current = Output.Create(Aws.GetCallerIdentity.InvokeAsync());
var accountId = current.Apply(current => current.AccountId);
and then add that to output of your stack. So your stack does nothing (no change) only read..
translate to python or go.. ^
comment out any ops such as your IAM change
s
Thanks all. It was expired credentials.