-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
95 lines (80 loc) · 2.17 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_network_client" {
type = bool
description = "Controls whether the Spot Ocean Network Client 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.1.0"
}
variable "chart_repository" {
type = string
description = "Repository URL where to locate the Spot Ocean Network Client chart."
default = "https://charts.spot.io"
}
variable "chart" {
type = string
description = "Chart name to be deployed."
default = "ocean-network-client"
}
variable "chart_namespace" {
type = string
description = "Chart namespace to install the release into."
default = "kube-system"
}
variable "token" {
type = string
description = "Spotinst token."
default = null
}
variable "account_id" {
type = string
description = "Spotinst Account Id"
default = null
}
variable "cluster_identifier" {
type = string
description = "Spotinst Cluster Identifier."
default = null
}
variable "secret_name" {
type = string
description = "Secret name. If token and account_id aren't null, will create a new secret with this 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. If cluster_identifier isn't null, will create a new config map with this name"
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 = "Always"
}
variable "image_pull_secrets" {
type = string
description = "Image pull secrets."
default = null
}