{"id":20712940,"url":"https://github.com/thesis/terraform-google-bootstrap-project","last_synced_at":"2026-06-05T10:31:32.809Z","repository":{"id":78438905,"uuid":"203404528","full_name":"thesis/terraform-google-bootstrap-project","owner":"thesis","description":"Used for spinning up a new Google project.  Produces a project, admin users, and a bucket for Terraform remote state.","archived":false,"fork":false,"pushed_at":"2022-08-16T20:48:35.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-03-11T06:49:17.455Z","etag":null,"topics":["google-cloud-platform","terraform","terraform-module"],"latest_commit_sha":null,"homepage":null,"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/thesis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"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,"publiccode":null,"codemeta":null}},"created_at":"2019-08-20T15:32:54.000Z","updated_at":"2020-04-07T19:34:09.000Z","dependencies_parsed_at":null,"dependency_job_id":"72a2aeaf-fac3-44e6-aca7-cb67ffb83340","html_url":"https://github.com/thesis/terraform-google-bootstrap-project","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/thesis/terraform-google-bootstrap-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-bootstrap-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-bootstrap-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-bootstrap-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-bootstrap-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thesis","download_url":"https://codeload.github.com/thesis/terraform-google-bootstrap-project/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-bootstrap-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33939226,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"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":["google-cloud-platform","terraform","terraform-module"],"created_at":"2024-11-17T02:22:38.900Z","updated_at":"2026-06-05T10:31:32.789Z","avatar_url":"https://github.com/thesis.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003c!-- Module Name and description are required --\u003e\n# Google Bootstrap Project Module\n\nUsed for spinning up a new Google project.  Produces a project, admin users,\nand a bucket for Terraform remote state.\n\n\u003c!-- Compatibility section is optional --\u003e\n## Compatibility\n\nThis module is compatible with Terraform `\u003c= 0.12.0`\nAnd the Google Cloud Provider `\u003c= 1.19.0`\n\n\u003c!-- Usage section is required --\u003e\n## Usage\n\n\u003c!-- NOTE: Examples should go into an `/examples` directory, with a link here\nalong the following lines:\n\nThere are multiple examples included in the [examples](./examples/) folder but\nsimple usage is as follows:\n\n--\u003e\n\n```hcl\nlocals {\n  labels {\n    contact     = \"author@email.co\"\n    environment = \"fancy-dev\"\n    vertical    = \"fancy\"\n  }\n}\n\nmodule \"fancy_google_project\" {\n  source                = \"git@github.com:thesis/terraform-google-bootstrap-project.git\"\n  project_name          = \"fancy-dev\"\n  org_id                = \"xxxyyyzzz\"\n  billing_account       = \"111222333\"\n  project_owner_members = [\"john@email.co\", \"lilly@email.co\",]\n  location              = \"us-central1\"\n  labels                = ${local.labels}\n  project_service_list  = \"[\"api-you-want-enabled-at-project-creation.googleapis.com\"]\"\n\n}\n```\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|:----:|:-----:|:-----:|\n| billing\\_account | The billing account to associate with your project.  Must be associated with org already. Local ENV VAR | string | `\"\"` | no |\n| disable\\_on\\_destroy | Determines whether to disable the service when the terraform resource is destroyed (true/ false) | string | `\"true\"` | no |\n| labels | A list of key/value pairs to describe your resource.  Labels are akin to tags. | map | `\u003cmap\u003e` | no |\n| location | The region to deploy the backend bucket in. | string | `\"us-east4\"` | no |\n| org\\_id | The ID for the organization the project will be created under. Local ENV VAR | string | `\"\"` | no |\n| project\\_name | The name to give your project. | string | `\"\"` | no |\n| project\\_owner\\_members | A list of gcp users / service accounts to designate as owners of the project being created. | list | `\u003clist\u003e` | no |\n| project\\_service\\_list | List of services or APIs that will be enabled on project creation. | list | `\u003clist\u003e` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| project\\_id |  |\n| project\\_name |  |\n| terraform\\_backend\\_bucket\\_name |  |\n\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\n\u003c!-- Notes section is optional --\u003e\n## Notes\n\nFor a Thesis or a Thesis vertical project this should be the first module you run.\nIt does require admin access on the GCP Organization level.\n\n\u003c!-- License is required --\u003e\n## License\n\nSee [LICENSE](./LICENSE) for full details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesis%2Fterraform-google-bootstrap-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthesis%2Fterraform-google-bootstrap-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesis%2Fterraform-google-bootstrap-project/lists"}