Hey Guys, I've created a Pulumi Bridged provider f...
# pulumiverse
m
Hey Guys, I've created a Pulumi Bridged provider for Boundary : https://github.com/katasec/pulumi-boundary The provider works fine if I install it manually. For e.g.:
Copy code
#pulumi plugin install resource boundary --file ~/tmp/pulumi-resource-boundary v0.0.1
However, if I try to install it automatically via
pulumi up
.... I get the following error:
Copy code
error: could not load plugin for boundary provider 'urn:pulumi:app::boundary::pulumi:providers:boundary::default_https_/github.com/katasec/pulumi-boundary/releases/download/v__VERSION_': Could not automatically download and install resource plugin 'pulumi-resource-boundary', install the plugin using `pulumi plugin install resource boundary`.
Underlying error: 404 HTTP error fetching plugin from <https://api.github.com/repos/pulumi/pulumi-boundary/releases/latest>. If this is a private GitHub repository, try providing a token via the GITHUB_TOKEN environment variable. See: <https://github.com/settings/tokens>
What do I need to do to ensure the pulumi ctl can discover this automatically and downloaded it from the releases in my github repo ? Any advice would be appreciated. Thank you so much.
b
@most-portugal-2672 try this format for your plugin download url: https://github.com/lbrlabs/pulumi-harness/blob/main/provider/resources.go#L82
m
Aaah - thank you ! Will do