brash-school-3769
07/11/2024, 3:12 PMpulumi up
I get this error
error: Could not automatically download and install resource plugin 'pulumi-resource-foo' at version v0.0.1-alpha.1720536403+6cfce8fe.dirty, install the plugin using `pulumi plugin install resource foo v0.0.1-alpha.1720536403+6cfce8fe.dirty`: error downloading provider foo to file: failed to download plugin: foo-0.0.1-alpha.1720536403+6cfce8fe.dirty: 403 HTTP error fetching plugin from <https://get.pulumi.com/releases/plugins/pulumi-resource-foo-v0.0.1-alpha.1720536403%2B6cfce8fe.dirty-darwin-arm64.tar.gz>
To my understanding, it should try to use the binary in the $GOPATH/bin. I'm not sure what's going on there.
After researching a bit, I found that I could specify a local path in my Pulumi.yaml file, which I did. Now when I run pulumi up
I get a different error
error: could not read plugin [<local-path>/bin/pulumi-resource-foo] stdout: EOF
any assistance on this would be much appreciatedbig-architect-71258
07/11/2024, 3:19 PMmake provider
, in the bin
sub-directory of the provider code repository.
Ensure that the complete path to the bin
directory is at the first position in the $PATH environment variable in the shell session in which you execute pulumi up
.
From my experience I'd test the provider first in a Pulumi YAML program, because YAML doesn't rely on any working package configuration for one of the other programming language.brash-school-3769
07/11/2024, 3:24 PMschemaOnlyProvider does not implement runtime operation InitLogging
big-architect-71258
07/11/2024, 3:29 PMbrash-school-3769
07/11/2024, 3:29 PMbig-architect-71258
07/11/2024, 3:33 PMbig-architect-71258
07/11/2024, 3:36 PMpanic
.
pf/internal/schemashim/provider.go:159: panic("schemaOnlyProvider does not implement runtime operation InitLogging")
big-architect-71258
07/11/2024, 3:38 PMbrash-school-3769
07/11/2024, 3:49 PM