{"id":14957269,"url":"https://github.com/vercel/terraform-provider-vercel","last_synced_at":"2026-02-27T23:57:30.606Z","repository":{"id":38239941,"uuid":"452772221","full_name":"vercel/terraform-provider-vercel","owner":"vercel","description":"Terraform Vercel Provider","archived":false,"fork":false,"pushed_at":"2025-03-20T15:33:21.000Z","size":1171,"stargazers_count":151,"open_issues_count":15,"forks_count":27,"subscribers_count":55,"default_branch":"main","last_synced_at":"2025-03-28T08:08:06.723Z","etag":null,"topics":["terraform","terraform-provider","vercel"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vercel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-01-27T17:08:27.000Z","updated_at":"2025-03-20T15:32:59.000Z","dependencies_parsed_at":"2023-11-13T09:44:57.805Z","dependency_job_id":"14f10531-ebb4-4e92-9f25-e6b193f9276e","html_url":"https://github.com/vercel/terraform-provider-vercel","commit_stats":{"total_commits":181,"total_committers":19,"mean_commits":9.526315789473685,"dds":0.5027624309392265,"last_synced_commit":"71a655f75a51b204e511a76b2f7419fca99e2789"},"previous_names":[],"tags_count":84,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Fterraform-provider-vercel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Fterraform-provider-vercel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Fterraform-provider-vercel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vercel%2Fterraform-provider-vercel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vercel","download_url":"https://codeload.github.com/vercel/terraform-provider-vercel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247149500,"owners_count":20891954,"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":["terraform","terraform-provider","vercel"],"created_at":"2024-09-24T13:14:29.572Z","updated_at":"2026-01-08T11:09:34.596Z","avatar_url":"https://github.com/vercel.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vercel Terraform Provider\n\n- [Terraform Website](https://developer.hashicorp.com/terraform)\n- [Terraform Documentation for this Provider](https://registry.terraform.io/providers/vercel/vercel/latest/docs)\n\n## Requirements\n\n- [Terraform](https://developer.hashicorp.com/terraform/install) 1.1 or higher\n- [Go](https://golang.org/doc/install) 1.24 (to build the provider plugin)\n- [GoReleaser](https://goreleaser.com/install)\n- [Task](https://taskfile.dev/installation) v3 (to run Taskfile commands)\n\n## Building The Provider\n\nClone repository locally and run\n\n```sh\ntask build\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 (version 1.19+ is _required_).\n\nTo compile the provider, run `task build`. This will build the provider and put the provider binary in the repository root.\n\n```sh\ntask build\n```\n\nIn addition, you can run `task install` to set up a developer overrides in your `~/.terraformrc`. This will then allow you to use your locally built provider binary.\n\n```sh\ntask install\n```\n\nCreate a `main.tf` file on your machine and use the [terraform cli](https://developer.hashicorp.com/terraform/tutorials/aws-get-started/install-cli#install-terraform) to test\n\n```sh\nterraform plan\nterraform apply\n```\n\nWhen you are finished using a local version of the provider, running `task uninstall` will remove _all_ developer\noverrides.\n\n```sh\ntask uninstall\n```\n\n- HashiCorp - [Development Overrides for Provider developers](https://www.terraform.io/docs/cli/config/config-file.html#development-overrides-for-provider-developers).\n\n## Testing\n\nIn order to test the provider, you can simply run `task test`.\n\n\u003e [!Note]\n\u003e This runs acceptance tests that will create real resources. You should expect that the full acceptance test suite will take some time to run.\n\nThe acceptance tests require a few environment variables to be set:\n\n- `VERCEL_API_TOKEN` - this can be generated at [vercel.com/account/tokens](https://vercel.com/account/tokens)\n- `VERCEL_TERRAFORM_TESTING_TEAM` - a Vercel team_id where resources can be created and destroyed\n- `VERCEL_TERRAFORM_TESTING_GITHUB_REPO` - a GitHub repository in the form 'org/repo' that can be used to trigger deployments\n- `VERCEL_TERRAFORM_TESTING_BITBUCKET_REPO` - a Bitbucket repository in the form 'project/repo' that can be used to trigger deployments\n- `VERCEL_TERRAFORM_TESTING_GITLAB_REPO` - a GitLab repository in the form 'project/repo' that can be used to trigger deployments\n- `VERCEL_TERRAFORM_TESTING_DOMAIN` - a Vercel testing domain that can be used for testing\n- `VERCEL_TERRAFORM_TESTING_EXISTING_INTEGRATION` - a Vercel integration that can be used for testing\n\n```sh\ntask test\n```\n\nIn order to run the tests with extra debugging context, prefix with `TF_LOG` (see the [terraform documentation](https://developer.hashicorp.com/terraform/internals/debugging) for details).\n\n```sh\nTF_LOG=INFO task test\n```\n\nTo run a specific set of tests, use the `-run` flag and specify a regex pattern matching the test names.\n\n```sh\ntask test -- -run 'TestAcc_Project*'\n```\n\n## Building The Documentation\n\n```sh\nexport GOBIN=~/go/bin\nexport PATH=$GOBIN:$PATH\ntask docs\n```\n\nThe documentation is autogenerated from Description fields within the provider, and the `examples` directory.\nBuilding the documentation generates markdown in the `docs` folder, ready for deployment to Hashicorp.\n\n- To view the documentation:\n\n  Paste `/docs` Markdown file content into [https://registry.terraform.io/tools/doc-preview](https://registry.terraform.io/tools/doc-preview)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvercel%2Fterraform-provider-vercel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvercel%2Fterraform-provider-vercel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvercel%2Fterraform-provider-vercel/lists"}