-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
51 lines (43 loc) · 1.05 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
variable "cluster_name" {
type = string
description = "Kubernetes cluster name"
}
variable "cluster_type" {
type = string
description = "Kubernetes cluster type e.g. aws, gke, on-prem"
}
## Github
variable "github_flux_repo" {
type = string
description = "Github gitops repo"
}
# Flux
variable "flux_namespace" {
description = "Namespace to deploy flux"
type = string
default = "flux"
}
variable "flux_tag" {
description = "Tag of flux Docker image to pull"
type = string
default = "1.20.2"
}
variable "flux_args_extra" {
description = "Additional arguments to provide to the flux daemon"
type = map(string)
default = {}
}
variable "flux_git_paths" {
type = string
description = "Paths from git repo to apply via Flux"
default = "/"
}
variable "flux_git_branch" {
type = string
description = "Git branch to use in flux"
default = "master"
}
variable "flux_git_clone_url" {
type = string
description = "Git clone url to use in flux"
}