Where is the pulumi plugin configuration stored? W...
# general
q
Where is the pulumi plugin configuration stored? We have installed a new plugin which crashes terraform bridge, so we would like to remove it 🙂 We've removed all the references in the project and in
~/.pulumi
.
pulumi plugin ls -p
doesn't show that plugin in use. However, when we try to run pulumi up, it is still downloaded.
e
There might be a reference to it in the stack state file. Use
pulumi stack export > file.json
to get the state and edit out any reference to that plugin and then
pulumi stack import
q
thanks, that helped 🙂
🙌 1