-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables-flux.tf
45 lines (37 loc) · 1.04 KB
/
variables-flux.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
# File auto-generated by ./bin/make-example-vars
#### Flux #####
###############
#variable "flux_aws_region" {
# description = "AWS Region."
# type = string
#}
#variable "flux_cluster_name" {
# description = "EKS cluster name."
# type = string
#}
variable "flux_github_token" {
description = "GitHub OAuth / Personal Access Token. Can also by provided via the GITHUB_TOKEN environment variable."
type = string
default = ""
sensitive = true
}
variable "flux_github_org" {
description = "GitHub organization or individual user account to manage."
type = string
default = ""
}
variable "flux_github_repository" {
description = "Name of the GitHub repository."
type = string
default = ""
}
variable "flux_path" {
description = "Path relative to the repository root, when specified the cluster sync will be scoped to this path."
type = string
default = "cluster"
}
variable "flux_version" {
description = "Flux version."
type = string
default = "v2.3.0"
}