-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
33 lines (29 loc) · 1.15 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
variable "name" {
description = "(Required) The name of the organization."
type = string
nullable = false
}
variable "owners" {
description = "(Optional) A list of usernames to add users as `admin` role. When applied, an invitation will be sent to the user to become an owner of the organization."
type = set(string)
default = []
nullable = false
}
variable "members" {
description = "(Optional) A list of usernames to add users as `member` role. When applied, an invitation will be sent to the user to become a member of the organization."
type = set(string)
default = []
nullable = false
}
variable "blocked_users" {
description = "(Optional) A list of usernames to block from organization."
type = set(string)
default = []
nullable = false
}
variable "security_manager_teams" {
description = "(Optional) A list of team slugs to add as security manager teams. Grant a team permission to manage security alerts and settings across the organization. This team will also be granted read access to all repositories."
type = set(string)
default = []
nullable = false
}