-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvariables.tf
60 lines (46 loc) · 887 Bytes
/
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
60
variable "project_name" {
default = "k8s"
}
variable "project_region" {
default = "us-central1"
}
variable "gcp_project_name" {
default = "cncf-280014"
}
variable "network_routing_mode" {
description = "Routing mode for network; GLOBAL or REGIONAL"
default = "GLOBAL"
}
variable "public_subnet_1a" {
default = "10.26.1.0/24"
}
variable "public_subnet_1b" {
default = "10.26.2.0/24"
}
variable "private_subnet_1a" {
default = "10.26.3.0/24"
}
variable "private_subnet_1b" {
default = "10.26.4.0/24"
}
variable "master_count" {
default = 1
}
variable "node_count" {
default = 2
}
variable "harbor_count" {
default = 1
}
variable "envoy_count" {
default = 1
}
variable "disk_size" {
default = 10
}
variable "username" {
default = "matheus"
}
variable "ssh_key" {
default = "./cncf_key.pub"
}