-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputs.tf
44 lines (36 loc) · 1.12 KB
/
inputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
variable "resource_suffix" {
description = "String used in various resources to suffix resource names related to this VPN setup"
type = string
}
variable "aws_vpc_id" {
description = "AWS VPC to connect the VPN to"
type = string
}
variable "aws_subnet_ids" {
description = "AWS subnets to connect the VPN to"
type = list(string)
}
variable "google_project" {
description = "The GCP project to use for this run"
type = string
}
variable "google_credentials" {
description = "Contents of a JSON keyfile of an account with write access to the project"
type = string
}
variable "google_region" {
description = "GCP region used to create all resources in this run"
type = string
}
variable "gcp_network_name" {
description = "Name of the GCP VPC network to connect the VPN to"
type = string
}
variable "gcp_network_id" {
description = "ID of the GCP VPC network to connect the VPN to (must be the same network as gcp_network_name)"
type = string
}
variable "gcp_subnetwork_name" {
description = "GCP subnet to connect the VPN to"
type = string
}