-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
65 lines (52 loc) · 929 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
variable "name" {
type = string
}
variable "namespace_id" {
type = number
default = null
}
variable "project_variables" {
type = map(any)
default = {}
}
variable "approvals_required" {
type = number
default = 1
}
variable "reset_approvals_on_push" {
type = bool
default = true
}
variable "disable_overrides" {
type = bool
default = true
}
variable "author_approval" {
type = bool
default = false
}
variable "disable_committers_approval" {
type = bool
default = true
}
variable "default_branch" {
type = string
default = "main"
}
variable "merge_access_level" {
type = string
default = "maintainer"
}
variable "push_access_level" {
type = string
default = "developer"
}
# Approval rules don't work on Gitlab-CE
variable "enable_approval_rules" {
type = bool
default = false
}
variable "deploy_key" {
type = string
default = null
}