-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
48 lines (40 loc) · 1.24 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
variable "repository_name" {
description = "GitHub repository name"
type = string
}
variable "develop_context" {
description = "The list of status checks to require in order to merge into develop. Default: no checks."
type = list(string)
default = []
}
variable "stage_context" {
description = "The list of status checks to require in order to merge into stage. Default: no checks."
type = list(string)
default = []
}
variable "master_context" {
description = "The list of status checks to require in order to merge into master. Default: no checks."
type = list(string)
default = []
}
variable "main_context" {
description = "The list of status checks to require in order to merge into main. Default: no checks."
type = list(string)
default = []
}
variable "use_develop" {
description = "Indicate the existence of a develop branch."
default = false
}
variable "use_stage" {
description = "Indicate the existence of a stage branch."
default = false
}
variable "use_master" {
description = "Indicate the existence of a master branch."
default = false
}
variable "use_main" {
description = "Indicate the existence of a main branch."
default = true
}