-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
48 lines (41 loc) · 942 Bytes
/
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
variable "token" {}
variable "authorized_keys" {}
variable "root_pass" {}
variable "region" {
default = "us-east"
}
variable "soa_email" {}
variable "github_owner" {
type = string
description = "github owner"
default = "wbh1"
}
variable "github_token" {
type = string
description = "github token"
}
variable "github_deploy_key_title" {
type = string
description = "Name of Github Deploy Key"
default = "flux"
}
variable "repository_name" {
type = string
default = "flux-infra"
description = "github repository name"
}
variable "repository_visibility" {
type = string
default = "private"
description = "How visible is the github repo"
}
variable "branch" {
type = string
default = "main"
description = "branch name"
}
variable "target_path" {
type = string
default = "staging-cluster"
description = "flux sync target path"
}