{"id":19490804,"url":"https://github.com/n3tuk/infra-github","last_synced_at":"2026-04-15T23:33:07.600Z","repository":{"id":226828296,"uuid":"769559893","full_name":"n3tuk/infra-github","owner":"n3tuk","description":"The general, high-level Terraform configuration for GitHub, including thebootstrapping of basic GCP access for state management, and the creation andconfiguration of repositories and common resources.","archived":false,"fork":false,"pushed_at":"2024-06-09T17:18:56.000Z","size":48,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-18T23:03:08.915Z","etag":null,"topics":["github","github-deployment","github-repositories","github-workflows","terraform","terraform-configuration"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/n3tuk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-03-09T12:27:30.000Z","updated_at":"2024-03-28T23:35:18.000Z","dependencies_parsed_at":"2024-04-28T18:23:14.043Z","dependency_job_id":"814fd56c-1a84-41f2-93ab-f737496bd664","html_url":"https://github.com/n3tuk/infra-github","commit_stats":null,"previous_names":["n3tuk/infra-github"],"tags_count":0,"template":false,"template_full_name":"n3tuk/template-terraform-configuration","purl":"pkg:github/n3tuk/infra-github","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3tuk%2Finfra-github","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3tuk%2Finfra-github/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3tuk%2Finfra-github/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3tuk%2Finfra-github/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/n3tuk","download_url":"https://codeload.github.com/n3tuk/infra-github/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/n3tuk%2Finfra-github/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31865067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["github","github-deployment","github-repositories","github-workflows","terraform","terraform-configuration"],"created_at":"2024-11-10T21:14:24.499Z","updated_at":"2026-04-15T23:33:07.560Z","avatar_url":"https://github.com/n3tuk.png","language":"HCL","readme":"# n3tuk Terraform Workspace for Cloudflare DNS\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nA [Terraform][terraform] repository for the management of [GitHub][github]\nrepositories for the [`n3tuk`][n3tuk] Organisation.\n\n[terraform]: https://terraform.io/\n[github]: https://github.com/\n[n3tuk]: https://github.com/n3tuk\n\n## Workspace\n\nThe [`terraform/`][workspace] workspace hosts the configuration for GitHub,\nincluding configuration of the Organisation, the repositories, and associated\nresources. The [`README.md`][readme] therein for further information on\nsupported `variables` and `outputs`, as well as the what is managed by the\nworkspace.\n\n[workspace]: https://github.com/n3tuk/infra-github/tree/main/terraform/\n[readme]: https://github.com/n3tuk/infra-github/blob/main/terraform/README.md\n\n## Usage\n\nIn the event that the [`terraform/`][workspace] needs to be deployed manually,\nensure that the following is configured in the local environment first:\n\n```console\n$ set -x GITHUB_TOKEN xxx\n$ gcloud auth login\n...\nYou are now logged in as [jon@than.io].\n$ gcloud config set project genuine-caiman\n```\n\n### Developing\n\nThe [Taskfiles][taskfile] for this repository have a `develop` task which allows\nit to continuously run checking and integration tasks during development:\n\n[taskfile]: https://taskfile.dev/\n\n```console\n$ task develop\ntask: Started watching for tasks: develop\n...\n[lint] Passed\n[validate] Passed\n...\n```\n\n### Running Terraform\n\nTo run Terraform, this must only be done inside each individual Terraform\nconfiguration.\n\n```console\n$ cd terraform/\n$ task plan\n...\n[plan] Plan: 0 to add, 0 to change, 0 to destroy.\n...\n$ task apply\n...\n[apply] Apply complete! Resources: 0 added, 0 changed, 0 destroyed.\n```\n\n## License\n\nCopyright (c) 2024 Jonathan Wright\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n## Authors\n\n- Jonathan Wright (\u003cjon@than.io\u003e)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3tuk%2Finfra-github","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn3tuk%2Finfra-github","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn3tuk%2Finfra-github/lists"}