-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
59 lines (46 loc) · 1.07 KB
/
variables.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
######################################################
# Creates all Variables for CIDR Subnets and Project #
######################################################
variable "gcp_project" {
default = "gcp-n4k-lab-v03"
}
variable "region" {
default = "europe-west1"
}
variable "zone" {
default = "europe-west1-d"
}
variable "vm-mdt" {
default = "vsgcp-mdt-01"
}
variable "vm-dc" {
default = "vsgcp-dc-01"
}
variable "yourpublicip" {
default = "1.2.3.4"
}
variable "sharedsecret" {
default = "2342635463fgsrrt45634564536"
}
variable "cidr-gcp" {
type = string
default = "172.21.2.0/24"
}
variable "cidr-local" {
type = string
default = "192.168.1.0/24"
}
variable "cidr-gcp-list" {
type = list
default = ["172.21.2.0/24"]
}
variable "cidr-local-list" {
type = list
default = ["192.168.1.0/24"]
}
variable "ip-mdt-01" {
default = "172.21.2.11"
}
variable "ip-dc-01" {
default = "172.21.2.12"
}