-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
70 lines (59 loc) · 1.53 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
variable "admin_privileges" {
description = "Whether the group has admin privileges"
type = bool
default = false
}
variable "auto_join" {
description = "Whether new users are automatically added to the group"
type = bool
default = true
}
variable "external_id" {
description = "The external ID of the group"
type = string
default = "auto"
}
variable "name" {
description = "The name of the group"
type = string
}
variable "permissions" {
description = "The permissions granted to the group on the repositories"
type = list(string)
default = ["read", "write"]
}
variable "policy_manager" {
description = "Whether the group is a policy manager"
type = bool
default = false
}
variable "realm" {
description = "The realm of the group"
type = string
default = "internal"
}
variable "realm_attributes" {
description = "The realm attributes of the group"
type = string
default = "auto"
}
variable "repositories" {
description = "The repositories that the permission target applies to"
type = list(string)
default = ["ANY"]
}
variable "reports_manager" {
description = "Whether the group is a reports manager"
type = bool
default = false
}
variable "users_names" {
description = "The names of the users in the group"
type = list(string)
default = []
}
variable "watch_manager" {
description = "Whether the group is a watch manager"
type = bool
default = false
}