-
Notifications
You must be signed in to change notification settings - Fork 26
/
variables.tf
67 lines (54 loc) · 1.44 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
variable "deployment_endpoint" {
description = "-(Optional) Endpoint for the application"
default = "example.local"
}
variable "deployment_name" {
description = "-(Required) The name of the deployment"
}
variable "deployment_environment" {
description = "-(Required) The name of the environment"
}
variable "deployment_path" {
description = "-(Required) Chart location or chart name <stable/example>"
}
variable "release_version" {
description = "-(Optional) Specify the exact chart version to install"
default = "0.1.0"
}
variable "remote_chart" {
type = bool
default = false
description = "-(Optional) For the remote charts set to <true>"
}
variable "enabled" {
type = bool
default = true
description = "-(Optional) deployment can be disabled or enabled by using this bool!"
}
variable "template_custom_vars" {
type = map(any)
default = {}
description = "-(Optional) Local chart replace variables from values.yaml"
}
variable "trigger" {
default = "UUID"
}
variable "timeout" {
default = "400"
}
variable "recreate_pods" {
type = bool
default = false
}
variable "values" {
default = "values.yaml"
description = "-(Optional) Local chart <values.yaml> location"
}
variable "remote_override_values" {
default = ""
description = "-(Optional)"
}
variable "chart_repo" {
default = ""
description = "-(Optional) Provide the remote helm charts repository."
}