{"id":41363477,"url":"https://github.com/platform9/terraform-provider-pf9","last_synced_at":"2026-01-23T08:10:24.532Z","repository":{"id":41999258,"uuid":"241462554","full_name":"platform9/terraform-provider-pf9","owner":"platform9","description":"Terraform provider for PMK","archived":false,"fork":false,"pushed_at":"2024-09-10T09:45:16.000Z","size":492,"stargazers_count":1,"open_issues_count":1,"forks_count":3,"subscribers_count":26,"default_branch":"master","last_synced_at":"2026-01-18T07:37:03.861Z","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/platform9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","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}},"created_at":"2020-02-18T20:39:59.000Z","updated_at":"2024-09-10T09:43:38.000Z","dependencies_parsed_at":"2024-02-20T18:25:32.969Z","dependency_job_id":"34a7e6c1-2828-4c33-938b-0554e994546e","html_url":"https://github.com/platform9/terraform-provider-pf9","commit_stats":null,"previous_names":["platform9/konform"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/platform9/terraform-provider-pf9","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/platform9%2Fterraform-provider-pf9","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/platform9%2Fterraform-provider-pf9/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/platform9%2Fterraform-provider-pf9/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/platform9%2Fterraform-provider-pf9/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/platform9","download_url":"https://codeload.github.com/platform9/terraform-provider-pf9/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/platform9%2Fterraform-provider-pf9/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28684014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T05:48:07.525Z","status":"ssl_error","status_checked_at":"2026-01-23T05:48:07.129Z","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-23T08:10:23.219Z","updated_at":"2026-01-23T08:10:24.520Z","avatar_url":"https://github.com/platform9.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform Provider for Platform9\n\nThe provider is built on top of the Platform9 Managed Kubernetes (PMK) platform, which is a managed Kubernetes service that provides a single pane of glass for managing multiple clusters.\n\n## Using the Provider\n\nRefer to the [documentation](https://registry.terraform.io/providers/platform9/pf9/latest/docs) on the Terraform Registry for detailed instructions on how to use this provier. You can also refer to the [docs](./docs/) for documentation of the development version.\n\n## Development Setup\n\nTo set up your development environment, follow these steps:\n1. Create a new file called `.terraformrc` in your home directory if it doesn't already exist.\n2. Add the following `dev_overrides` block to your `.terraformrc` file:\n```terraform\nprovider_installation {\n  dev_overrides {\n    # Replace the path with the location where the provider binary is installed on your system.\n    \"platform9/pf9\" = \"/home/\u003cyour-username\u003e/go/bin\"\n  }\n  direct {}\n}\n```\n3. You don't need to run `terraform init` after adding the `dev_overrides` block to the `.terraformrc` file. Terraform automatically uses the development version of the provider when you run `terraform apply` or `terraform plan`.\n\n## Building the Provider\n\n### Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html)\n- [Go](https://golang.org/doc/install) to build the provider plugin\n- [Visual Studio Code](https://code.visualstudio.com/download) (optional, but recommended)\n- [Make](https://www.gnu.org/software/make/) for running the Makefile\n- [GoReleaser](https://goreleaser.com/install/) for creating releases\n\n### Development Workflow\n\n```shell\n# Build the provider and install its binary in GOBIN path, /home/\u003cyour-username\u003e/go/bin\nmake install\n\n# Add new resource/data source in the `provider_code_spec.json`. Refer existing resource/data-source.\ncode provider_code_spec.json\n\n# Use the following command to generate corresponding go types\nmake generate-code\n\n# Scaffold code for a new resource or data source\nNAME=newresource make scaffold-rs\n\n# Modify the scaffolded code to implement the resource or data source\ncode internal/provider/newresource_resource.go\n\n# Add documentation for the new resource or data source, use templates for attributes and examples. Refer existing templates.\ncode templates/resources/newresource.md.tmpl\n\n# Generate the documentation for terraform registry\nmake generate\n```\n\n### Debugging with Visual Studio Code\n\n1. Set breakpoints and start the debugging session in Visual Studio Code using `launch.json` already included in the repo.\n2. Copy the value of the `TF_REATTACH_PROVIDERS` from the *DEBUG CONSOLE* tab in Visual Studio Code.\n3. Open a terminal and set the `TF_REATTACH_PROVIDERS` environment variable to the copied value.\n4. In the terminal, run `terraform apply` or `terraform plan` to trigger the provider execution and hit the breakpoints.\n\n## Contributing\n\n1. Clone this repository locally.\n2. Make any changes you want in your cloned repository, and when you are ready to send those changes to us, push your changes to an upstream branch and [create a pull request](https://help.github.com/articles/creating-a-pull-request/).\n3. Once your pull request is created, a reviewer will take responsibility for providing clear, actionable feedback. As the owner of the pull request, it is your responsibility to modify your pull request to address the feedback that has been provided to you by the reviewer(s).\n4. After your review has been approved, it will be merged into to the repository.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplatform9%2Fterraform-provider-pf9","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplatform9%2Fterraform-provider-pf9","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplatform9%2Fterraform-provider-pf9/lists"}