-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
71 lines (59 loc) · 1.63 KB
/
variables.tf
File metadata and controls
71 lines (59 loc) · 1.63 KB
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
variable "values" {
type = string
default = ""
description = "A values for Helm Chart in YAML format"
}
variable "namespace" {
type = string
default = "default"
description = "A name of the existing namespace"
}
variable "namespace_name" {
type = string
default = "application"
description = "A name of namespace for creating"
}
variable "chart_version" {
default = "0.1.0"
description = "Version of Helm Chart"
}
variable "force_argocd" {
default = 0
}
variable "argocd" {
type = map(string)
description = "A set of values for enabling deployment through ArgoCD"
default = {}
}
variable "repository" {
type = string
description = "A repository of Helm Chart"
}
variable "chart" {
type = string
description = "A Helm Chart name"
}
variable "name" {
type = string
description = "A name of the application"
}
variable "service_account_name" {
type = string
default = ""
description = "A name of the service account, in case of using custom SA name not matching with application name"
}
variable "destination_server" {
type = string
default = "https://kubernetes.default.svc"
description = "A destination server for ArgoCD application"
}
variable "project" {
type = string
default = ""
description = "A custom ArgoCD project for application, if not specified a project of ArgoCD itself be used"
}
variable "argocd_custom_app_settings" {
type = any
default = {}
description = "A custom ArgoCD application settings, for example: use folder with Helm chart instead of chart repository"
}