-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
75 lines (63 loc) · 1.34 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
variable "name" {
description = "Helm NAME"
type = string
}
variable "create_namespace" {
description = "Create a Kubernetes namespace"
type = bool
default = false
}
variable "namespace" {
description = "Kubernetes namespace"
type = string
default = "default"
}
variable "chart_url" {
description = "Helm Cahrt repository"
type = string
}
variable "chart_name" {
description = "Helm Chart name"
type = string
}
variable "chart_version" {
description = "Helm Chart version"
type = string
}
variable "cluster_name" {
description = "EKS Cluster name"
type = string
}
variable "set_values" {
description = "set values"
type = set(object({
name = string
value = string
type = string
}))
}
variable "set_sensitive_values" {
description = "set values"
type = set(object({
name = string
value = string
type = string
}))
}
variable "cluster_endpoint" {
description = "Kubernetes cluster endpoint"
type = string
}
variable "cluster_ca_cert" {
description = "Kubernetes cluster cluster_ca_certificate"
type = string
}
variable "tags" {
description = "A map of tags to add to all resources"
type = map(string)
default = {}
}
variable "env" {
description = "Environment"
type = string
}