Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
269 views
in Technique[技术] by (71.8m points)

javascript - pulumi stuck at gcp.organizations.getIAMPolicy

We are using pulumi version 2.18.2 (we tried also with 1.14.1) with GCP provider to create IAM policy on a project.

Our code is stuck and we noticed that the issue comes from the following code (minimal reproducible example), that does not complete ("Is never displayed" log message is never displayed) :

console.log("Before operation that does not complete...");
const policyDataIAM = gcp.organizations.getIAMPolicy({
    bindings: []
});
console.log("Is never displayed");

pulumi up shows :

Before operation that does not complete...

After 1 hour, only this log appears.

Any idea or people who can reproduce the issue would be appreciated !

question from:https://stackoverflow.com/questions/65923754/pulumi-stuck-at-gcp-organizations-getiampolicy

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The issue cause is because we were using an old version of pulumi/gcp package. In package.json, we updated it from :

"dependencies": {
    "@pulumi/gcp": "^0.18.14"
}

to

"dependencies": {
    "@pulumi/gcp": "^4.9.0"
}

And now it works : it is not stuck at gcp.organizations.getIAMPolicy operation.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...