{"id":26775506,"url":"https://github.com/vmvarela/terraform-github-suborg","last_synced_at":"2025-10-09T03:32:52.796Z","repository":{"id":282946456,"uuid":"948655103","full_name":"vmvarela/terraform-github-suborg","owner":"vmvarela","description":"This module simplifies the management of multiple repositories by applying common settings, permissions, and configurations in a unified way.","archived":false,"fork":false,"pushed_at":"2025-04-01T07:16:59.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-09T03:32:08.786Z","etag":null,"topics":["github-config","terraform-module"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/vmvarela/suborg/github","language":"HCL","has_issues":false,"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/vmvarela.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-14T18:04:33.000Z","updated_at":"2025-04-01T07:17:02.000Z","dependencies_parsed_at":"2025-03-17T20:24:05.433Z","dependency_job_id":"652724f8-ad8d-4177-8daf-00103e9f30de","html_url":"https://github.com/vmvarela/terraform-github-suborg","commit_stats":null,"previous_names":["vmvarela/terraform-github-suborg"],"tags_count":5,"template":false,"template_full_name":"vmvarela/template","purl":"pkg:github/vmvarela/terraform-github-suborg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmvarela%2Fterraform-github-suborg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmvarela%2Fterraform-github-suborg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmvarela%2Fterraform-github-suborg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmvarela%2Fterraform-github-suborg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vmvarela","download_url":"https://codeload.github.com/vmvarela/terraform-github-suborg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vmvarela%2Fterraform-github-suborg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000714,"owners_count":26082911,"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-10-09T02:00:07.460Z","response_time":59,"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":["github-config","terraform-module"],"created_at":"2025-03-29T03:18:37.379Z","updated_at":"2025-10-09T03:32:52.773Z","avatar_url":"https://github.com/vmvarela.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Sub-Org Terraform module\n\nThis module simplifies the management of multiple repositories by applying common settings, permissions, and configurations in a unified way.\n\n## Usage\n\n```hcl\nmodule \"suborg\" {\n  source = \"github.com/vmvarela/terraform-github-suborg\"\n  repositories = {\n    my-repo-1 = {\n      visibility     = \"private\"\n      default_branch = \"main\"\n      template       = \"MarketingPipeline/Awesome-Repo-Template\"\n    }\n    my-repo-2 = {\n      visibility     = \"public\"\n      default_branch = \"master\"\n      template       = \"vmvarela/template\"\n    }\n  }\n}\n```\n\n## Examples\n\n- [simple](https://github.com/vmvarela/terraform-github-suborg/tree/master/examples/simple) - Single repositories group\n\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.7 |\n| \u003ca name=\"requirement_github\"\u003e\u003c/a\u003e [github](#requirement\\_github) | \u003e= 6.6.0 |\n\n## Providers\n\nNo providers.\n\n## Modules\n\n| Name | Source | Version |\n|------|--------|---------|\n| \u003ca name=\"module_repo\"\u003e\u003c/a\u003e [repo](#module\\_repo) | vmvarela/repository/github | 0.3.3 |\n\n## Resources\n\nNo resources.\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_defaults\"\u003e\u003c/a\u003e [defaults](#input\\_defaults) | Default configuration for repositories (overwritten by repository settings) | `any` | `{}` | no |\n| \u003ca name=\"input_repositories\"\u003e\u003c/a\u003e [repositories](#input\\_repositories) | Map of repositories (key: name, value: settings). See terraform-github-repository module for details. | `any` | `{}` | no |\n| \u003ca name=\"input_settings\"\u003e\u003c/a\u003e [settings](#input\\_settings) | Fixed common configuration (cannot be overwritten) | `any` | `{}` | no |\n| \u003ca name=\"input_spec\"\u003e\u003c/a\u003e [spec](#input\\_spec) | Format specification for repository names (i.e \"prefix-%s\") | `string` | `null` | no |\n| \u003ca name=\"input_teams\"\u003e\u003c/a\u003e [teams](#input\\_teams) | The list of collaborators (teams) of all repositories | `map(string)` | `{}` | no |\n| \u003ca name=\"input_users\"\u003e\u003c/a\u003e [users](#input\\_users) | The list of collaborators (users) of al repositories | `map(string)` | `{}` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_repositories\"\u003e\u003c/a\u003e [repositories](#output\\_repositories) | List of created repositories |\n\u003c!-- END_TF_DOCS --\u003e\n\n## Authors\n\nModule is maintained by [Victor M. Varela](https://github.com/vmvarela).\n\n## License\n\nApache 2 Licensed. See [LICENSE](https://github.com/vmvarela/terraform-github-subgroup/tree/master/LICENSE) for full details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvmvarela%2Fterraform-github-suborg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvmvarela%2Fterraform-github-suborg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvmvarela%2Fterraform-github-suborg/lists"}