worried-honey-61577
01/05/2021, 4:42 PMmake build_sdks
command generates an npm library and a binary plugin. I can see the plugin:
$ pulumi plugin ls | grep rundeck
rundeck resource 0.2.0 40 MB 2 weeks ago 2 weeks ago
But now — how do I actually get this deployed somewhere so that it’s usable in a production environment?
Here’s my fork of the pulumi-tf-provider-boilerplate
, after having followed all the steps. Any ideas?broad-dog-22463
01/05/2021, 4:45 PMworried-honey-61577
01/05/2021, 4:46 PMbroad-dog-22463
01/05/2021, 4:47 PMworried-honey-61577
01/05/2021, 4:47 PMbroad-dog-22463
01/05/2021, 4:48 PMworried-honey-61577
01/05/2021, 5:00 PMpulumi plugin install resource <name> --server-url <location-of-storage-bucket>
?
How does that occur upon the installation of an NPM library, like if I were to
npm install @pulumi/gcp
billowy-army-68599
01/05/2021, 5:11 PMworried-honey-61577
01/05/2021, 5:12 PMbillowy-army-68599
01/05/2021, 5:13 PMinstall-pulumi-plugin.js
with a --server
optionworried-honey-61577
01/05/2021, 5:15 PM<s3://rel.pulumi.com/releases/plugins/${PLUGIN_PACKAGE_NAME}>
billowy-army-68599
01/05/2021, 5:15 PMjq
jq '.scripts.postinstall += "pulumi plugin install resource rundeck $(PROVIDER_VERSION) --server <https://bintray.com/pulumi-resource-rundeck>"' > package.json
<http://rel.pulumi.com|rel.pulumi.com>
is the default for pulumi owned pluginsworried-honey-61577
01/05/2021, 5:16 PMbillowy-army-68599
01/05/2021, 5:17 PMworried-honey-61577
01/05/2021, 5:18 PM