-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support security manager teams for org-organization
- Loading branch information
Showing
4 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,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 | ||
} |