I have a program using `aws.getCallerIdentity` tha...
# general
m
I have a program using
aws.getCallerIdentity
that was working and has somehow now stopped. I changed the program to just
Copy code
import * as pulumi from '@pulumi/pulumi';
import * as aws from '@pulumi/aws';

(async () => {
  console.log('start')
  console.log(await aws.getCallerIdentity());
  console.log('end')
})();
and it hangs on
aws.getCallerIdentity()
Any idea what could have happened?
g
What version of Pulumi and Node are you using? There was an issue with Node
v12.11.1
that we fixed just the other day.
m
node
v12.12.0
pulumi
v1.3.2
Ahh yeah I think going back to node 12.10 fixed it
g
It should be fixed in the 1.3.2 release of
@pulumi/pulumi
later today.
m
phew 😅 , was started to lose my mind what was happening, thanks!