-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
34 lines (32 loc) · 834 Bytes
/
vars.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
variable "teams" {
type = object({
plc = list(string)
security = list(string)
bots = list(string)
members = list(string)
maintainers = object({
cask = list(string)
brew = list(string)
core = list(string)
tsc = list(string)
ops = list(string)
formulae_brew_sh = list(string)
ci-orchestrator = list(string)
analytics = list(string)
})
taps = object({
bundle = list(string)
brew-pip-audit = list(string)
homebrew-linux-fonts = list(string)
services = list(string)
})
})
}
variable "github_admins" {
type = list(string)
}
variable "email_overrides" {
type = map(string)
sensitive = true
default = {}
}