# Cloud VPN Route-based Module ## Example ```hcl module "addresses" { source = "./fabric/modules/net-address" project_id = var.project_id external_addresses = { vpn = "europe-west1" } } module "vpn" { source = "./fabric/modules/net-vpn-static" project_id = var.project_id region = var.region network = var.vpc.self_link name = "remote" gateway_address_create = false gateway_address = module.addresses.external_addresses["vpn"].address remote_ranges = ["10.10.0.0/24"] tunnels = { remote-0 = { peer_ip = "1.1.1.1" shared_secret = "mysecret" traffic_selectors = { local = ["0.0.0.0/0"], remote = ["0.0.0.0/0"] } } } } # tftest modules=2 resources=8 ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [name](variables.tf#L29) | VPN gateway name, and prefix used for dependent resources. | string | ✓ | | | [network](variables.tf#L34) | VPC used for the gateway and routes. | string | ✓ | | | [project_id](variables.tf#L39) | Project where resources will be created. | string | ✓ | | | [region](variables.tf#L44) | Region used for resources. | string | ✓ | | | [gateway_address](variables.tf#L17) | Optional address assigned to the VPN gateway. Ignored unless gateway_address_create is set to false. | string | | null | | [gateway_address_create](variables.tf#L23) | Create external address assigned to the VPN gateway. Needs to be explicitly set to false to use address in gateway_address variable. | bool | | true | | [remote_ranges](variables.tf#L49) | Remote IP CIDR ranges. | list(string) | | [] | | [route_priority](variables.tf#L56) | Route priority, defaults to 1000. | number | | 1000 | | [tunnels](variables.tf#L62) | VPN tunnel configurations. | map(object({…})) | | {} | ## Outputs | name | description | sensitive | |---|---|:---:| | [address](outputs.tf#L17) | VPN gateway address. | | | [gateway](outputs.tf#L22) | VPN gateway resource. | | | [name](outputs.tf#L27) | VPN gateway name. | | | [random_secret](outputs.tf#L32) | Generated secret. | | | [self_link](outputs.tf#L37) | VPN gateway self link. | | | [tunnel_names](outputs.tf#L42) | VPN tunnel names. | | | [tunnel_self_links](outputs.tf#L50) | VPN tunnel self links. | | | [tunnels](outputs.tf#L58) | VPN tunnel resources. | |