-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
88 lines (70 loc) · 1.52 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
variable "argocd_namespace" {
type = string
default = "argocd"
}
variable "argocd_name" {
type = string
default = "argocd"
}
variable "argocd_repository" {
type = string
default = "https://argoproj.github.io/argo-helm"
}
variable "argocd_chart" {
type = string
default = "argo-cd"
}
variable "argocd_version" {
type = string
default = "5.51.0"
}
variable "argocd_force_update" {
type = bool
default = false
}
### REPO CREDENTIALS ###
variable "argocd_credentials_key" {
description = "SSH key for the rootapp repository. It has to be supplied as an environmetn variable."
type = string
}
variable "argocd_credentials_git" {
type = string
default = "git"
}
variable "argocd_credentials_url" {
type = string
default = "[email protected]:aliasboink/raspberrypi_argocd_charts.git"
}
variable "argocd_credentials_name" {
type = string
default = "rootapp-repo"
}
### ROOTAPP ###
variable "rootapp_enabled" {
type = bool
default = false
}
variable "rootapp_name" {
type = string
default = "rootapp"
}
variable "rootapp_repository" {
type = string
default = "https://argoproj.github.io/argo-helm"
}
variable "rootapp_chart" {
type = string
default = "argocd-apps"
}
variable "rootapp_version" {
type = string
default = "1.0.0"
}
variable "rootapp_repo_revision" {
type = string
default = "HEAD"
}
variable "rootapp_repo_path" {
type = string
default = "./"
}