-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-variables.tf
More file actions
59 lines (52 loc) · 1.35 KB
/
bootstrap-variables.tf
File metadata and controls
59 lines (52 loc) · 1.35 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
variable "bootstrap_applicationset_enabled" {
description = "Enable bootstrap ApplicationSet for automatic app discovery"
type = bool
default = false
}
variable "bootstrap_applicationset_name" {
description = "Name of the bootstrap ApplicationSet"
type = string
default = "cluster-apps"
}
variable "bootstrap_repo_url" {
description = "Git repository URL for bootstrap ApplicationSet"
type = string
default = ""
}
variable "bootstrap_destination" {
description = "Set of applicationSets for clusters management"
type = map(object({
path = string
revision = string
project = string
server = string
}))
default = {
"default" = {
path = "apps/*"
revision = "HEAD"
project = "default"
server = "in-cluster"
}
}
}
variable "bootstrap_sync_automated" {
description = "Enable automated sync for bootstrap apps"
type = bool
default = false
}
variable "bootstrap_sync_prune" {
description = "Enable pruning for automated sync"
type = bool
default = false
}
variable "bootstrap_sync_self_heal" {
description = "Enable self-healing for automated sync"
type = bool
default = true
}
variable "bootstrap_create_namespace" {
description = "Create namespace for each app automatically"
type = bool
default = true
}