forked from sean-/terraform-gce-3tier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.tf
49 lines (41 loc) · 701 Bytes
/
vars.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
# Configure the variables to use
variable "account_file_path" {}
variable "client_secrets_path" {}
variable "project_name" {}
variable "region_name" {}
variable "network_name" {}
variable "external_net" {}
variable "internal_net" {}
variable "iprange" {}
variable "layer1type" {
default = {
gce = "g1-small"
aws = ""
}
}
variable "layer2type" {
default = {
gce = "g1-small"
aws = ""
}
}
variable "layer3type" {
default = {
gce = "g1-small"
aws = ""
}
}
variable "azones" {
default = {
zon0 = "us-central1-a"
zon1 = "us-central1-b"
zon2 = "us-central1-f"
}
}
variable "ezones" {
default = {
zon0 = "asia-east1-a"
zon1 = "asia-east1-b"
zon2 = "asia-east1-c"
}
}