{"id":20712912,"url":"https://github.com/thesis/terraform-google-vpc","last_synced_at":"2026-05-23T03:35:47.768Z","repository":{"id":78438909,"uuid":"242022122","full_name":"thesis/terraform-google-vpc","owner":"thesis","description":"Creates a regional VPC with two subnets: public and private.","archived":false,"fork":false,"pushed_at":"2020-04-14T22:13:46.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-12-27T11:26:52.624Z","etag":null,"topics":["google-cloud-platform","terraform","terraform-module","vpc"],"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/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":"2020-02-21T00:40:35.000Z","updated_at":"2020-04-14T22:13:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"4658e07e-a888-438c-b0c0-39a0ebb2564a","html_url":"https://github.com/thesis/terraform-google-vpc","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":"thesis/terraform-module-template-repo","purl":"pkg:github/thesis/terraform-google-vpc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-vpc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-vpc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-vpc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-vpc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thesis","download_url":"https://codeload.github.com/thesis/terraform-google-vpc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesis%2Fterraform-google-vpc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33381989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T01:21:08.577Z","status":"online","status_checked_at":"2026-05-23T02:00:05.530Z","response_time":53,"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","vpc"],"created_at":"2024-11-17T02:22:30.249Z","updated_at":"2026-05-23T03:35:42.760Z","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# GCP VPC Module\n\nCreates a regional VPC with two subnets: public and private.\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 --\u003e\n\nModule usage is as follows:\n\n```hcl\nmodule \"your_custom_name_for_your_instance_of_this_module\" {\n  source           = \"git@github.com:thesis/terraform-google-vpc.git\"\n  vpc_network_name = \"name-of-your-vpc-network\"\n  project          = \"gcp-id-of-your-project\"\n  region           = \"region-name\"\n  routing_mode     = \"regional-or-global\"\n\n  public_subnet_name          = \"name-of-your-public-subnet\"\n  public_subnet_ip_cidr_range = \"CIDR-range-for-public-subnet\"\n\n  private_subnet_name          = \"name-of-your-private-subnet\"\n  private_subnet_ip_cidr_range = \"CIDR-range-for-private-subnet\"\n}\n```\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|:----:|:-----:|:-----:|\n| private\\_subnet\\_ip\\_cidr\\_range | The primary CIDR range for the private subnet. | string | `\"\"` | no |\n| private\\_subnet\\_name | The primary private subnet name. | string | `\"\"` | no |\n| project | The project id of the project you want to create the bucket in. | string | `\"\"` | no |\n| public\\_subnet\\_ip\\_cidr\\_range | The primary CIDR range for the public subnet. | string | `\"\"` | no |\n| public\\_subnet\\_name | The primary public subnet name. | string | `\"\"` | no |\n| region | The regions where resources are generated. | string | `\"\"` | no |\n| routing\\_mode | Sets dynamic routing scope to global or regional.  Must be regional or global. | string | `\"\"` | no |\n| vpc\\_network\\_name | The name of your vpc-network. | string | `\"\"` | no |\n| vpc\\_subnet\\_prefix | prefix naming for any subnet created via the module. | string | `\"vpc-subnet\"` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| vpc\\_network\\_gateway\\_ip | The ip of the gateway assigned to the vpc-network. |\n| vpc\\_network\\_name | The name of your created vpc-network |\n| vpc\\_network\\_self\\_link | The URI of the created vpc-network resource. |\n| vpc\\_private\\_subnet\\_name | The name of your created private subnet. |\n| vpc\\_private\\_subnet\\_self\\_link | The URI of the created private subnet resource. |\n| vpc\\_public\\_subnet\\_name | The name of your created public subnet. |\n| vpc\\_public\\_subnet\\_self\\_link | The URI of the created public subnet resource. |\n| vpc\\_subnet\\_prefix | prefix naming for any subnet created via the module. |\n\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\n\u003c!-- Notes section is optional --\u003e\n\u003c!-- ## Notes --\u003e\n\n\n\u003c!-- License is required --\u003e\n## License\n\nSee [LICENSE](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesis%2Fterraform-google-vpc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthesis%2Fterraform-google-vpc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesis%2Fterraform-google-vpc/lists"}