-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
57 lines (50 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
variable "watch_namespaces" {
description = "The namespaces that the Operator should watch for IstioOperator manifests. Empty for all Namespaces."
type = list(string)
default = ["istio-system"]
}
variable "wait_for_resources_timeout" {
description = "The amount of seconds that the operator should wait for a timeout."
type = number
default = 300
}
variable "hub" {
description = "The hub where the image repository is located."
default = "docker.io/istio"
}
variable "namespace" {
description = "The namespace in which to install the Istio Operator."
default = "istio-operator"
}
variable "node_selector" {
description = "nodeSelectors to set on the operators Pod."
type = map(string)
default = {}
}
variable "tag" {
description = "The image tag to use."
default = "1.16.1"
}
variable "resources" {
description = "The resource requests and limits for the deployment."
type = object({
limits = object({
cpu = string
memory = string
})
requests = object({
cpu = string
memory = string
})
})
default = {
limits = {
cpu = "200m"
memory = "256Mi"
}
requests = {
cpu = "50m"
memory = "128Mi"
}
}
}