https://github.com/happypathway/terraform-google-network
Creates a Network in GCP
https://github.com/happypathway/terraform-google-network
Last synced: 4 months ago
JSON representation
Creates a Network in GCP
- Host: GitHub
- URL: https://github.com/happypathway/terraform-google-network
- Owner: HappyPathway
- License: mit
- Created: 2018-10-03T22:31:44.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T18:49:25.000Z (over 7 years ago)
- Last Synced: 2025-02-25T15:42:15.956Z (over 1 year ago)
- Language: HCL
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Network Google Cloud Platform
Manages a network within GCE
##### Example (minimum)
```hcl
module "network" {
source = "tasdikrahman/network/google"
name = "${var.name}"
}
```
## Inputs
| Name | Description | Type | Default | Required |
|------|-------------|:----:|:-----:|:-----:|
| auto_create_subnetworks | Auto-creation of the associated subnet | string | `false` | no |
| name | Network name to create on GCP | string | - | yes |
## Outputs
| Name | Description |
|------|-------------|
| gateway_ipv4 | The IPv4 address of the gateway |
| name | The unique name of the network |
| self_link | The URL of the created resource |
#### Docs
- https://cloud.google.com/compute/docs/vpc
- https://www.terraform.io/docs/providers/google/r/compute_network.html
### LICENSE
MIT License