{"id":42207056,"url":"https://github.com/render-oss/terraform-provider-render","last_synced_at":"2026-01-27T00:36:11.472Z","repository":{"id":242100125,"uuid":"808284417","full_name":"render-oss/terraform-provider-render","owner":"render-oss","description":"Source code for the official Render Terraform provider","archived":false,"fork":false,"pushed_at":"2025-11-20T05:41:56.000Z","size":1127,"stargazers_count":46,"open_issues_count":14,"forks_count":12,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-11-20T07:18:13.855Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/render-oss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-05-30T18:45:23.000Z","updated_at":"2025-10-24T22:05:47.000Z","dependencies_parsed_at":"2025-02-13T20:22:20.423Z","dependency_job_id":"4a125079-75bf-4325-8c3e-08cb000641ba","html_url":"https://github.com/render-oss/terraform-provider-render","commit_stats":null,"previous_names":["render-oss/terraform-provider-render"],"tags_count":27,"template":false,"template_full_name":null,"purl":"pkg:github/render-oss/terraform-provider-render","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fterraform-provider-render","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fterraform-provider-render/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fterraform-provider-render/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fterraform-provider-render/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/render-oss","download_url":"https://codeload.github.com/render-oss/terraform-provider-render/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fterraform-provider-render/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28793697,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-01-27T00:36:10.735Z","updated_at":"2026-01-27T00:36:11.467Z","avatar_url":"https://github.com/render-oss.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Render Provider\n\nThis is the repository of the officially supported Terraform provider for managing infrastructure on [Render](https://render.com).\n\n## Requirements\n\n- [Terraform](https://developer.hashicorp.com/terraform/downloads) \u003e= 1.0\n- [Go](https://golang.org/doc/install) \u003e= 1.21\n\n## Building The Provider\n\n1. Clone the repository\n1. Enter the repository directory\n1. Build the provider using the Go `install` command:\n\n```shell\ngo install\n```\n\n## Adding Dependencies\n\nThis provider uses [Go modules](https://github.com/golang/go/wiki/Modules).\nPlease see the Go documentation for the most up to date information about using Go modules.\n\nTo add a new dependency `github.com/author/dependency` to your Terraform provider:\n\n```shell\ngo get github.com/author/dependency\ngo mod tidy\n```\n\nThen commit the changes to `go.mod` and `go.sum`.\n\n## Running a local version of the provider\n\n1. Create `~/.terraformrc` with the following contents (replace `\u003cGOPATH\u003e` with your GOPATH)\n   ```hcl\n   provider_installation {\n      dev_overrides {\n       \"registry.terraform.io/render-oss/render\" = \"\u003cGOPATH\u003e/bin\"\n      }\n\n      # For all other providers, install them directly from their origin provider\n      # registries as normal. If you omit this, Terraform will _only_ use\n      # the dev_overrides block, and so no other providers will be available.\n      direct {}\n   }\n   ```\n2. Install the provider by running `go install`\n3. Use the provider in your Terraform configuration:\n   ```terraform\n      terraform {\n        required_providers {\n          render = {\n            source = \"registry.terraform.io/render-oss/render\"\n          }\n        }\n      }\n\n      provider \"render\" {\n        api_key = \"\u003cYOUR_API_KEY\u003e\" # Alternatively, set the RENDER_API_KEY environment variable\n        owner_id = \"\u003cYOUR_OWNER_ID\u003e\" # Alternatively, set the RENDER_OWNER_ID environment variable\n      }\n   ```\n\nIf you are successfully using a local version of the provider, you should see the following in the output of a `terraform plan`:\n\n```shell\nWarning: Provider development overrides are in effect\n````\n\n## Developing the Provider\n\nIf you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (see [Requirements](#requirements) above).\n\nTo compile the provider, run `go install`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.\n\nTo generate or update documentation, run `go generate`.\n\nIn order to run the full suite of Acceptance tests, run `make testacc`.\n\n*Note:* Acceptance tests may create real resources, and cost money to run.\n\n```shell\nmake testacc\n```\n\n### Generating cassettes for provider tests\n\nTo generate cassettes, run:\n\n```shell\nTF_ACC=1 RENDER_OWNER_ID=\u003cyour owner id such as usr-xxx or tea-xxx\u003e RENDER_API_KEY=\u003cyour api key\u003e RENDER_HOST=\u003crender host such as https://api.render.com/v1 \u003e UPDATE_RECORDINGS=true go test -count=1 -v\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frender-oss%2Fterraform-provider-render","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frender-oss%2Fterraform-provider-render","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frender-oss%2Fterraform-provider-render/lists"}