{"id":24041948,"url":"https://github.com/cloudy-sky-software/pulumi-render","last_synced_at":"2025-04-19T19:54:39.556Z","repository":{"id":65427659,"uuid":"468200319","full_name":"cloudy-sky-software/pulumi-render","owner":"cloudy-sky-software","description":"A Pulumi provider for Render based on Render's OpenAPI spec. https://render.com","archived":false,"fork":false,"pushed_at":"2025-04-17T11:54:53.000Z","size":3201,"stargazers_count":9,"open_issues_count":5,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-17T15:29:42.225Z","etag":null,"topics":["pulumi","pulumi-provider","render"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudy-sky-software.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-03-10T05:02:12.000Z","updated_at":"2025-04-06T22:05:39.000Z","dependencies_parsed_at":"2023-12-30T03:29:39.593Z","dependency_job_id":"b49c824a-4db2-49be-9faa-802f1cef487d","html_url":"https://github.com/cloudy-sky-software/pulumi-render","commit_stats":{"total_commits":251,"total_committers":5,"mean_commits":50.2,"dds":"0.33864541832669326","last_synced_commit":"cc4cd83f12ec0ce73aa6db80019ba60ada0013f2"},"previous_names":[],"tags_count":131,"template":false,"template_full_name":"pulumi/pulumi-provider-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudy-sky-software%2Fpulumi-render","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudy-sky-software%2Fpulumi-render/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudy-sky-software%2Fpulumi-render/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudy-sky-software%2Fpulumi-render/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudy-sky-software","download_url":"https://codeload.github.com/cloudy-sky-software/pulumi-render/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249430687,"owners_count":21270674,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pulumi","pulumi-provider","render"],"created_at":"2025-01-08T22:14:04.221Z","updated_at":"2025-04-19T19:54:39.539Z","avatar_url":"https://github.com/cloudy-sky-software.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pulumi Native Provider for Render\n\n[Render](https://render.com/) 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.\n\n\u003e This provider was generated using [`pulschema`](https://github.com/cloudy-sky-software/pulschema) and [`pulumi-provider-framework`](https://github.com/cloudy-sky-software/pulumi-provider-framework).\n\n## Package SDKs\n\n- Node.js: https://www.npmjs.com/package/@cloudyskysoftware/pulumi-render\n- Python: https://pypi.org/project/pulumi-render/\n- .NET: https://www.nuget.org/packages/Pulumi.Render\n- Go: `import github.com/cloudyskysoftware/pulumi-render/sdk/go/render`\n\n## Using The Provider\n\nYou'll need an API key. Follow Render's [docs](https://render.com/docs/api#getting-started) for creating one.\nThen set the API key as a secret with `pulumi config set --secret render:apiKey`.\n\n### Importing Existing Resources\n\nImport IDs should satisfy all ID segments in the `GET` endpoint for the resource\nyou are importing. The IDs required in the path should be separated by `/`.\nLocate the `GET` endpoint in the [OpenAPI spec](https://github.com/cloudy-sky-software/pulumi-render/blob/main/provider/cmd/pulumi-gen-render/openapi.yml).\n\nFor example, to read a custom domain, the path in the OpenAPI spec is: `GET /services/{serviceId}/custom-domains/{customDomainIdOrName}`.\n\nThus, the `pulumi import` command to run is:\n\n```bash\n# The type render:services:CustomDomain can be easily found by using your IDEs\n# Go To Definition functionality for the resource and looking at the type\n# property defined in the custom resource's class definition.\npulumi import render:services:CustomDomain {resourceName} /{serviceId}/{customDomainIdOrName}\n```\n\nAlternatively, you can also import using the `import` Pulumi resource option.\nRun `pulumi up` to import the resource into your stack's state. Once imported,\nyou should remove the `import` resource option.\n\n```typescript\nconst myCustomDomain = new render.services.CustomDomain(\n  \"myCustomDomain\",\n  { name: \"www.somedomain.com\", serviceId: staticSite.id },\n  {\n    protect: true,\n    import: `/srv-xxxxxxxxxxxxxxx/www.somedomain.com`,\n  }\n);\n```\n\nRefer to the Pulumi [docs](https://www.pulumi.com/docs/iac/adopting-pulumi/import/) for importing a\nresource.\n\n## Releasing A New Version\n\n:info: Switch to the `main` branch first and get the latest `git pull origin main \u0026\u0026 git fetch`. Check what the last release tag was.\n\n1. Regular releases should just increment the patch version unless a minor or a major (breaking changes) version bump is warranted.\n1. Update the `CHANGELOG.md` with notes about what will be included in this release.\n1. Commit the changelog with `git commit -am \"vX.Y.Z\"` or something similar and push `git push origin main`.\n1. Tag the commit with the release version by running\n\n   ```bash\n   git tag vX.Y.Z\n   git tag sdk/vX.Y.Z\n   ```\n\n1. Push the tags.\n\n   ```bash\n   git push --tags\n   ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudy-sky-software%2Fpulumi-render","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudy-sky-software%2Fpulumi-render","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudy-sky-software%2Fpulumi-render/lists"}