boundless-scientist-80299
10/24/2023, 6:35 AMwarning: using pulumi-resource-hcloud from $PATH at /nix/store/i1qr2irz3bqsdg6g5q68m6r2w23vjx32-pulumi-3.88.0/bin/pulumi-resource-hcloud
I want to understand
1. Why this situation is not desirable.
2. Why doing a pulumi plugin install hcloud
doesn't eliminate the problem
3. What the idea is behind the env var PULUMI_IGNORE_AMBIENT_PLUGINS
(which does remove the warning)
4. If there's a way to get rid of the warning without opting in to stack-local (if that's the right terminology) providers, since I would like to control the binaries from elsewhere, as I am right now.melodic-tomato-39005
10/24/2023, 8:21 AM~/.pulumi/plugins/
or similar, which is not on the PATH, but pulumi knows to look there.
When a plugin is found on the path, that means - outside of Nix - that it was manually downloaded or copied. That can cause unintended behavior.PULUMI_IGNORE_AMBIENT_PLUGINS
tells Pulumi to ignore these plugins on the PATH.boundless-scientist-80299
10/24/2023, 9:02 AMmelodic-tomato-39005
10/24/2023, 9:03 AM