Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jameswoolfenden/terraform-gcp-network
Basic Network module
https://github.com/jameswoolfenden/terraform-gcp-network
gcp module network terraform vpc
Last synced: 3 days ago
JSON representation
Basic Network module
- Host: GitHub
- URL: https://github.com/jameswoolfenden/terraform-gcp-network
- Owner: JamesWoolfenden
- License: apache-2.0
- Created: 2019-10-31T20:37:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-11T08:22:17.000Z (over 1 year ago)
- Last Synced: 2024-11-26T03:17:01.661Z (2 months ago)
- Topics: gcp, module, network, terraform, vpc
- Language: HCL
- Homepage:
- Size: 73.2 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# terraform-gcp-network
[![Build Status](https://github.com/JamesWoolfenden/terraform-gcp-network/workflows/Verify/badge.svg?branch=master)](https://github.com/JamesWoolfenden/terraform-gcp-network)
[![Latest Release](https://img.shields.io/github/release/JamesWoolfenden/terraform-gcp-network.svg)](https://github.com/JamesWoolfenden/terraform-gcp-network/releases/latest)
[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/JamesWoolfenden/terraform-gcp-network.svg?label=latest)](https://github.com/JamesWoolfenden/terraform-gcp-network/releases/latest)
![Terraform Version](https://img.shields.io/badge/tf-%3E%3D0.14.0-blue.svg)
[![Infrastructure Tests](https://www.bridgecrew.cloud/badges/github/JamesWoolfenden/terraform-gcp-network/cis_aws)](https://www.bridgecrew.cloud/link/badge?vcs=github&fullRepo=JamesWoolfenden%2Fterraform-gcp-network&benchmark=CIS+AWS+V1.2)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![checkov](https://img.shields.io/badge/checkov-verified-brightgreen)](https://www.checkov.io/)
[![Infrastructure Tests](https://www.bridgecrew.cloud/badges/github/jameswoolfenden/terraform-gcp-network/general)](https://www.bridgecrew.cloud/link/badge?vcs=github&fullRepo=JamesWoolfenden%2Fterraform-gcp-network&benchmark=INFRASTRUCTURE+SECURITY)---
Basic Terraform module to make a networks and subnet with secondary range if supplied.
```terraform
module "network" {
source = "JamesWoolfenden/network/gcp"
version = "0.1.1"
}
```## Requirements
No requirements.
## Providers
| Name | Version |
|------|---------|
| [google](#provider\_google) | n/a |## Modules
No modules.
## Resources
| Name | Type |
|------|------|
| [google_compute_firewall.pike](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_firewall) | resource |
| [google_compute_network.vpc](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_network) | resource |
| [google_compute_subnetwork.sub](https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/compute_subnetwork) | resource |## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| [common\_tags](#input\_common\_tags) | This is to help you add tags to your cloud objects | `map(any)` | n/a | yes |
| [ip\_cidr\_range](#input\_ip\_cidr\_range) | n/a | `string` | n/a | yes |
| [name](#input\_name) | n/a | `string` | n/a | yes |
| [region](#input\_region) | n/a | `string` | n/a | yes |
| [secondary\_ip\_range](#input\_secondary\_ip\_range) | n/a | `any` | `null` | no |## Outputs
| Name | Description |
|------|-------------|
| [firewall](#output\_firewall) | n/a |
| [subnet](#output\_subnet) | n/a |
| [vpc](#output\_vpc) | n/a |## Role and Permissions
The Terraform resource required is:
```golang
resource "google_project_iam_custom_role" "terraform_pike" {
project = "pike"
role_id = "terraform_pike"
title = "terraform_pike"
description = "A user with least privileges"
permissions = [
"compute.networks.create",
"compute.networks.delete",
"compute.networks.get",
"compute.networks.updatePolicy",
"compute.subnetworks.create",
"compute.subnetworks.delete",
"compute.subnetworks.get"
]
}```
## Related Projects
Check out these related projects.
- [terraform-aws-s3](https://github.com/jameswoolfenden/terraform-aws-s3) - S3 buckets
## Help
**Got a question?**
File a GitHub [issue](https://github.com/JamesWoolfenden/terraform-gcp-network/issues).
## Contributing
### Bug Reports & Feature Requests
Please use the [issue tracker](https://github.com/JamesWoolfenden/terraform-gcp-network/issues) to report any bugs or file feature requests.
## Copyrights
Copyright © 2019-2023 James Woolfenden
## License
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
See [LICENSE](LICENSE) for full details.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License atUnless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.### Contributors
[![James Woolfenden][jameswoolfenden_avatar]][jameswoolfenden_homepage]
[James Woolfenden][jameswoolfenden_homepage][jameswoolfenden_homepage]: https://github.com/jameswoolfenden
[jameswoolfenden_avatar]: https://github.com/jameswoolfenden.png?size=150