{"id":26314421,"url":"https://github.com/temporalio/terraform-provider-temporalcloud","last_synced_at":"2025-07-27T02:09:23.870Z","repository":{"id":224627690,"uuid":"674327831","full_name":"temporalio/terraform-provider-temporalcloud","owner":"temporalio","description":"Terraform provider for Temporal Cloud","archived":false,"fork":false,"pushed_at":"2025-07-22T03:44:15.000Z","size":13820,"stargazers_count":20,"open_issues_count":26,"forks_count":17,"subscribers_count":15,"default_branch":"main","last_synced_at":"2025-07-22T05:27:50.145Z","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":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/temporalio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"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,"zenodo":null}},"created_at":"2023-08-03T17:12:15.000Z","updated_at":"2025-07-17T21:47:24.000Z","dependencies_parsed_at":"2024-02-27T00:24:53.031Z","dependency_job_id":"7b37d84d-1110-4a7b-a207-20703c508cff","html_url":"https://github.com/temporalio/terraform-provider-temporalcloud","commit_stats":null,"previous_names":["temporalio/terraform-provider-temporalcloud"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/temporalio/terraform-provider-temporalcloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Fterraform-provider-temporalcloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Fterraform-provider-temporalcloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Fterraform-provider-temporalcloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Fterraform-provider-temporalcloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/temporalio","download_url":"https://codeload.github.com/temporalio/terraform-provider-temporalcloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Fterraform-provider-temporalcloud/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267285728,"owners_count":24064217,"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-07-27T02:00:11.917Z","response_time":82,"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":[],"created_at":"2025-03-15T12:00:50.638Z","updated_at":"2025-07-27T02:09:23.848Z","avatar_url":"https://github.com/temporalio.png","language":"Go","funding_links":[],"categories":["Tools"],"sub_categories":["Terraform Providers"],"readme":"# Temporal Cloud Terraform Provider\n\nInteract with [Temporal Cloud](https://temporal.io/cloud) resources.\n\n[registry.terraform.io/providers/temporalio/temporalcloud](https://registry.terraform.io/providers/temporalio/temporalcloud/latest)\n\n[Documentation](https://registry.terraform.io/providers/temporalio/temporalcloud/latest/docs)\n\n## Contributing\n\n### Requirements\n\n- [Terraform](https://developer.hashicorp.com/terraform/downloads) \u003e= 1.0\n- [Go](https://golang.org/doc/install) \u003e= 1.19\n- [Temporal SDK](https://github.com/temporalio/sdk-go) \u003e= 1.26.0\n\n### Building\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### Documenting\n\n[docs/](docs/) are defined in code (see `MarkdownDescription`) and are generated by:\n\n```shell\ngo install\n\n# edit code\n\n# format and generate docs\ngofmt -s -w .\ngo generate ./...\n```\n\n### Developing\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\nIn order to run the full suite of Acceptance tests, run `make testacc`.\n\n*Note:* Acceptance tests create real resources, and often cost money to run.\n\n```shell\nmake testacc\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### Testing with Terraform\n\nIn order to test your code you need an api key for temporal cloud. Docs on how to generate this is here:\nhttps://github.com/temporalio/tcld/tree/release/apikeys#api-key-management-preview\n\nThen you need to make the provider binary available to `terraform` itself.\n\n```\ngo build -o terraform-provider-temporalcloud\nmkdir -p ~/.terraform.d/plugins/temporal.io/provider-temporalcloud/temporalcloud/1.0.0/darwin_arm64/\nmv terraform-provider-temporalcloud ~/.terraform.d/plugins/temporal.io/provider-temporalcloud/temporalcloud/1.0.0/darwin_arm64\n```\n\nFinally, your terraform configuration files need to know about this provider.\n\n```\nprovider \"temporalcloud\" {\n  api_key = \"\u003cAPI_KEY\u003e\"\n\n}\n\nterraform {\n  required_providers {\n    temporalcloud = {\n      version = \"~\u003e 1.0.0\"\n      source  = \"temporal.io/provider-temporalcloud/temporalcloud\"\n    }\n  }\n}\n```\n\nNow you can start testing your provider with `terraform`!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemporalio%2Fterraform-provider-temporalcloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftemporalio%2Fterraform-provider-temporalcloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemporalio%2Fterraform-provider-temporalcloud/lists"}