Package Exports
- @cloudyskysoftware/pulumi-render
- @cloudyskysoftware/pulumi-render/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@cloudyskysoftware/pulumi-render) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Pulumi Native Provider for Render
Render is a unified cloud to build and run all your apps and websites with free TLS certificates, a global CDN, DDoS protection, private networks, and auto deploys from Git.
This provider was generated using
pulschema
andpulumi-provider-framework
.
Package SDKs
- Node.js: https://www.npmjs.com/package/@cloudyskysoftware/pulumi-render
- Python: https://pypi.org/project/pulumi-render/
- .NET: https://www.nuget.org/packages/Pulumi.Render
- Go:
import github.com/cloudyskysoftware/pulumi-render/sdk/go/render
Using The Provider
You'll need an API key. Follow Render's docs for creating one.
Then set the API key as a secret with pulumi config set --secret render:apiKey
.
Releasing A New Version
:info: Switch to the main
branch first and get the latest git pull origin main && git fetch
. Check what the last release tag was.
Regular releases should just increment the patch version unless a minor or a major (breaking changes) version bump is warranted.
Update the
CHANGELOG.md
with notes about what will be included in this release.Commit the changelog with
git commit -am "vX.Y.Z"
or something similar and pushgit push origin main
.Tag the commit with the release version by running
git tag vX.Y.Z git tag sdk/vX.Y.Z
Push the tags.
git push --tags