{"id":30896908,"url":"https://github.com/circlefin/terraform-provider-quicknode","last_synced_at":"2025-09-08T23:47:48.930Z","repository":{"id":289254998,"uuid":"936812852","full_name":"circlefin/terraform-provider-quicknode","owner":"circlefin","description":"Terraform Provider for Quicknode","archived":false,"fork":false,"pushed_at":"2025-08-12T10:08:47.000Z","size":281,"stargazers_count":1,"open_issues_count":5,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-12T11:40:45.673Z","etag":null,"topics":["quicknode","terraform","terraform-provider"],"latest_commit_sha":null,"homepage":"","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/circlefin.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-02-21T18:23:32.000Z","updated_at":"2025-08-12T08:44:09.000Z","dependencies_parsed_at":"2025-04-22T11:36:43.706Z","dependency_job_id":null,"html_url":"https://github.com/circlefin/terraform-provider-quicknode","commit_stats":null,"previous_names":["circlefin/terraform-provider-quicknode"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/circlefin/terraform-provider-quicknode","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/circlefin%2Fterraform-provider-quicknode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/circlefin%2Fterraform-provider-quicknode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/circlefin%2Fterraform-provider-quicknode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/circlefin%2Fterraform-provider-quicknode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/circlefin","download_url":"https://codeload.github.com/circlefin/terraform-provider-quicknode/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/circlefin%2Fterraform-provider-quicknode/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274231140,"owners_count":25245675,"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","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["quicknode","terraform","terraform-provider"],"created_at":"2025-09-08T23:47:46.469Z","updated_at":"2025-09-08T23:47:48.918Z","avatar_url":"https://github.com/circlefin.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider Quicknode\n\nThis provider allows for managing [Quicknode](https://www.quicknode.com/) resources via Terraform.\nThe structure of the repository is outlined below:\n- Resources and data sources (`internal/provider/`),\n- Examples (`examples/`)\n- Generated documentation (`docs/`),\n\n## Resources\n\nThis provider supports the following resources:\n\n- **`quicknode_endpoint`** - Manage QuickNode endpoints for blockchain networks\n- **`quicknode_stream`** - Manage QuickNode Streams for real-time blockchain data\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## Using the provider\n\nThe provider is intended to be configured:\n```hcl\nterraform {\n  required_providers {\n    quicknode = {\n      source = \"registry.terraform.io/hashicorp/quicknode\"\n    }\n  }\n}\n\nprovider \"quicknode\" {\n  // endpoint = \"https://api.quicknode.com\"\n\n  // Also set via QUICKNODE_APIKEY\n  // apikey = \"todo\"\n}\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 or other generated code, run `make generate`.\n\n### Acceptance Tests\nIn order to run the full suite of Acceptance tests, run `make testacc`, ensuring that the environment variable QUICKNODE_APIKEY is set with an apikey with at least the scope `CONSOLE_REST`.\n\n*Note:* Acceptance tests create real resources, and often cost money to run.\n\n```shell\nQUICKNODE_APIKEY=\"qn_******\" make testacc\n```\n\n### On My Machine\nIn order to use a compiled provider for a local terraform plan/apply. Configure your `~.terraformrc` as follows:\n\n```hcl\nprovider_installation {\n  dev_overrides {\n      \"registry.terraform.io/hashicorp/quicknode\" = \"/path/to/go/bin\"\n  }\n}\n```\n\nThis made be done via the following command:\n```shell\ntee ~/.terraformrc \u003c\u003cEOT\nprovider_installation {\n  dev_overrides {\n      \"registry.terraform.io/hashicorp/quicknode\" = \"$(echo `go env GOPATH`/bin)\"\n  }\n  direct {}\n}\nEOT\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcirclefin%2Fterraform-provider-quicknode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcirclefin%2Fterraform-provider-quicknode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcirclefin%2Fterraform-provider-quicknode/lists"}