-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
95 lines (80 loc) · 2.04 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
variable "create_metric_exporter" {
type = bool
description = "Controls whether the Spot Ocean Metric Exporter should be created."
default = true
}
variable "create_namespace" {
type = bool
description = "Controls whether the namespace should be created if it does not yet exist."
default = true
}
variable "chart_version" {
type = string
description = "Chart version to be deployed."
default = "1.0.0"
}
variable "chart_repository" {
type = string
description = "Repository URL where to locate the Spot Ocean Metric Exporter chart."
default = "https://charts.spot.io"
}
variable "chart" {
type = string
description = "Chart name to be deployed."
default = "ocean-metric-exporter"
}
variable "chart_namespace" {
type = string
description = "Chart namespace to install the release into."
default = "spot-system"
}
variable "secret_name" {
type = string
description = "Secret name."
default = null
}
variable "namespace" {
type = string
description = "Kubernetes namespace where the components should be installed."
default = null
}
variable "config_map_name" {
type = string
description = "ConfigMap name."
default = null
}
variable "ca_bundle_secret_name" {
type = string
description = "CA bundle secret name."
default = null
}
variable "replica_count" {
type = number
description = "Replicas."
default = null
}
variable "image_repository" {
type = string
description = "Image repository."
default = null
}
variable "image_tag" {
type = string
description = "Image tag."
default = null
}
variable "image_pull_policy" {
type = string
description = "Image pull policy."
default = null
}
variable "image_pull_secrets" {
type = string
description = "Image pull secrets."
default = null
}
variable "create_service" {
type = bool
description = "Controls whether a service should be created."
default = null
}