-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (37 loc) · 1.01 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
variable "namespace" {
description = "Namespace for monitoring deployment containing pod runtime"
type = string
}
variable "docker_tag" {
description = "Tag of image ackee/gke_oom_monitoring used for monitoring"
default = "latest"
type = string
}
variable "project" {
description = "Project ID"
type = string
}
variable "location" {
description = "Location of the monitored pods"
type = string
}
variable "cluster_name" {
description = "Name of cluster of the monitored pods"
type = string
}
variable "cluster_ca_certificate" {
description = "Public CA certificate that is the root of trust for the GKE K8s cluster"
type = string
}
variable "cluster_token" {
description = "Cluster master token, keep always secret!"
type = string
}
variable "cluster_endpoint" {
description = "Cluster control plane endpoint"
type = string
}
variable "include_dashboard" {
description = "Include dashboard as k8s secret"
default = true
}