-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
34 lines (28 loc) · 912 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
variable "parent_folder" {
description = "Base folder ID for the rollout"
type = string
}
variable "customer_id" {
description = "the Customer ID of the cloud identity / GSuite account, https://support.google.com/a/answer/10070793?product_name=UnuFlow&hl=en&visit_id=637735135889309542-3932861521&rd=1&src=supportwidget0&hl=en"
type = string
}
variable "domain" {
description = "Domain name"
type = string
}
variable "iam_global_admin_group" {
description = "group of users that should have admin rights globally "
type = string
}
variable "departments" {
description = "list of departments with their owners"
type = map(any)
}
variable "teams" {
description = "list of teams with their departments as parents"
type = map(any)
}
variable "products" {
description = "list of products with their teams as parents"
type = map(any)
}