network
dcos-terraform/network/gcp
Create a Network to be used for DC/OS for GCP
 terraform-gcp-network Creates a DC/OS network for GCP for Masters and Agents EXAMPLE ``hcl module "dcos-vpc" { source = "dcos-terraform/network/gcp" version = "~> 0.1" agent_cidr_range = "10.65.0.0/16" master_cidr_range = "10.64.0.0/16" } ` Inputs | Name | Description | Type | Default | Required | |------|-------------|:----:|:-----:|:-----:| | agent\_cidr\_range | Agent CIDR Range | string | n/a | yes | | cluster\_name | Name of the DC/OS cluster | string | n/a | yes | | master\_cidr\_range | Master CIDR Range | string | n/a | yes | | disable\_master\_subnet | Do not create the master subnet | string | "false" | no | | name\_prefix | Name Prefix
| Name | Type | Description | Default |
|---|---|---|---|
| master_cidr_range | string | Master CIDR Range | required |
| agent_cidr_range | string | Agent CIDR Range | required |
| cluster_name | string | Name of the DC/OS cluster | required |
| name_prefix | string | Name Prefix | "" |
| disable_master_subnet | string | Do not create the master subnet | false |
network_name — Name of the network created by this moduleself_link — Self link of the network created by this modulecluster_name — Name of the DC/OS clustermaster_cidr_range — Master CIDR Rangemaster_subnetwork_name — Master Subnetwork Nameagent_subnetwork_name — Agent Subnetwork Name