-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
52 lines (44 loc) · 1.28 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
variable "name" {
type = string
default = "renovate"
description = "Name of Renovate Bot Installation"
}
variable "schedule" {
type = string
default = "0 6 * * 1"
description = "Schedule to run Renovate Bot. Defaults to Monday at 6am."
}
variable "git_type" {
type = string
default = "github"
description = "Version Control System Type to be used (github, gitlab, bitbucket)"
}
variable "git_endpoint" {
type = string
default = ""
description = "Endpoint to the Git Platform API"
}
variable "git_token" {
type = string
default = ""
description = "Git Token or BitBucket App Password used for Renovate to checkout Repositories and create Merge Requests"
}
variable "git_app_username" {
type = string
default = ""
description = "Git User/App Name used for Authentication. Required for BitBucket App Passwords"
}
variable "repositories" {
type = list(string)
description = "Repositories Renovate Bot should run on"
}
variable "renovate_version" {
type = string
default = ""
description = "Desired Renovate Docker Image Tag"
}
variable "k8s_namespace" {
type = string
default = "default"
description = "Kubernetes Namespace to deploy CronJob and Config into"
}