{"id":15176601,"url":"https://github.com/form3tech-oss/terraform-provider-githubipallowlist","last_synced_at":"2026-02-11T17:04:20.843Z","repository":{"id":65349796,"uuid":"580780356","full_name":"form3tech-oss/terraform-provider-githubipallowlist","owner":"form3tech-oss","description":"A Terraform provider for a GitHub's IP allow list","archived":false,"fork":false,"pushed_at":"2023-09-07T12:22:39.000Z","size":5003,"stargazers_count":1,"open_issues_count":10,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-10T11:42:07.930Z","etag":null,"topics":["github","go","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/form3tech-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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-21T12:36:00.000Z","updated_at":"2023-07-07T07:25:06.000Z","dependencies_parsed_at":"2024-06-21T02:27:12.916Z","dependency_job_id":null,"html_url":"https://github.com/form3tech-oss/terraform-provider-githubipallowlist","commit_stats":{"total_commits":160,"total_committers":27,"mean_commits":5.925925925925926,"dds":0.6125,"last_synced_commit":"892abe951105d6fea73089c8127aefc6056426df"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/form3tech-oss/terraform-provider-githubipallowlist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/form3tech-oss%2Fterraform-provider-githubipallowlist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/form3tech-oss%2Fterraform-provider-githubipallowlist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/form3tech-oss%2Fterraform-provider-githubipallowlist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/form3tech-oss%2Fterraform-provider-githubipallowlist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/form3tech-oss","download_url":"https://codeload.github.com/form3tech-oss/terraform-provider-githubipallowlist/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/form3tech-oss%2Fterraform-provider-githubipallowlist/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29338679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:14:43.024Z","status":"ssl_error","status_checked_at":"2026-02-11T16:14:15.258Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["github","go","terraform","terraform-provider"],"created_at":"2024-09-27T13:21:40.298Z","updated_at":"2026-02-11T17:04:20.828Z","avatar_url":"https://github.com/form3tech-oss.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-provider-githubipallowlist\n\nA Terraform provider for managing GitHub's IP allow list.\n\n## Requirements\n\n- [Terraform](https://www.terraform.io/downloads.html) \u003e= 1.3.*\n- [Go](https://golang.org/doc/install) \u003e= 1.19\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```sh\n$ go install\n```\n\nThis enables verifying your locally built provider using examples available in the `examples/` directory.\nNote that you will first need to configure your shell to map our provider to the local build:\n\n```sh\nexport TF_CLI_CONFIG_FILE=path/to/project/examples/dev.tfrc\n```\n\nAn example file is available in our `examples` directory and resembles:\n\n```hcl\nprovider_installation {\n  dev_overrides {\n    \"from3tech-oss/githubipallowlist\" = \"~/go/bin/\"\n  }\n  direct {}\n}\n```\n\nSee https://www.terraform.io/docs/cli/config/config-file.html for more details.\n\nWhen running examples, you should spot the following warning to confirm you are using a local build:\n\n```console\nWarning: Provider development overrides are in effect\n\nThe following provider development overrides are set in the CLI configuration:\n - from3tech-oss/githubipallowlist in /Users/somegithuuser/go/bin\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/form3tech-oss/terraform-provider-githubipallowlist` to your Terraform provider:\n\n```\ngo get github.com/form3tech-oss/terraform-provider-githubipallowlist\ngo mod tidy\n```\n\nThen commit the changes to `go.mod` and `go.sum`.\n\n## Using the provider\n\nTBD\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 (\nsee [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`\ndirectory.\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 create real resources, and often cost money to run.\n\n```sh\n$ make testacc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fform3tech-oss%2Fterraform-provider-githubipallowlist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fform3tech-oss%2Fterraform-provider-githubipallowlist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fform3tech-oss%2Fterraform-provider-githubipallowlist/lists"}