Does anyone know how to force pulumi to reinstall ...
# general
a
Does anyone know how to force pulumi to reinstall plugin binary for the aws provider using the right architecture? I'm on an m1 mac, and for some reason the plugin binary is using amd64 instead of arm.
e
Is it an old aws version? Generally just
pulumi plugin install resource aws --reinstall
should be enough
a
I did that for the latest version, but I guess I should go through and re-install all of them to rule them out. Might be a good idea to warn on arch mismatch by plugin version, to narrow it down for users.
I was able to catch the intel binary path using activity monitor to narrow down the file in question and re-installing that with your cmd and version, worked to fix it. Thanks!