-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
64 lines (52 loc) · 1.57 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
variable "credentials" {
type = string
description = "Location of the credentials keyfile."
}
variable "project_id" {
type = string
description = "The project ID to host the cluster in."
}
variable "region" {
type = string
description = "The region to host the cluster in."
}
variable "zones" {
type = list(string)
description = "The zones to host the cluster in."
}
variable "name" {
type = string
description = "The name of the cluster."
}
variable "machine_type" {
type = string
description = "Type of the node compute engines."
}
variable "min_count" {
type = number
description = "Minimum number of nodes in the NodePool. Must be >=0 and <= max_node_count."
}
variable "max_count" {
type = number
description = "Maximum number of nodes in the NodePool. Must be >= min_node_count."
}
variable "disk_size_gb" {
type = number
description = "Size of the node's disk."
}
variable "service_account" {
type = string
description = "The service account to run nodes as if not overridden in `node_pools`. The create_service_account variable default value (true) will cause a cluster-specific service account to be created."
}
variable "initial_node_count" {
type = number
description = "The number of nodes to create in this cluster's default node pool."
}
variable "traefik_auth" {
type = string
description = "String with the authentication for Traefik"
}
variable "domain" {
type = string
description = "The base domain that all services can use as a base"
}