-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (55 loc) · 1.25 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
60
61
62
63
64
65
66
67
68
variable "project" {
type = string
}
variable "location" {
type = string
}
variable "cluster_name" {
type = string
}
variable "node_machine_type" {
type = string
}
variable "min_node_count" {
type = number
}
variable "max_node_count" {
type = number
}
variable "domain" {
type = string
}
variable "base_domain" {
type = string
}
variable "preemptible" {
type = bool
default = false
}
variable "volume_size" {
type = number
}
variable "addons_istio" {
type = bool
default = false
}
variable "asi_oauth_scopes" {
type = list(string)
# https://developers.google.com/identity/protocols/googlescopes
default = [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/bigquery",
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/datastore",
"https://www.googleapis.com/auth/devstorage.full_control",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
"https://www.googleapis.com/auth/ndev.clouddns.readwrite",
"https://www.googleapis.com/auth/spanner.data",
"https://www.googleapis.com/auth/sqlservice.admin",
]
}
variable "gke_kubernetes_version_prefix" {
type = string
default = "1.17"
}