-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.tf
52 lines (45 loc) · 921 Bytes
/
variable.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
variable "subscription_id" {
type = string
}
variable "client_id" {
type = string
}
variable "client_secret" {
type = string
}
variable "tenant_id" {
type = string
}
variable "base_name" {
type = string
description = "Base Name for the groups to create (eg. project-name)"
default = null
}
variable "owner" {
type = list(any)
description = "Owner of the group"
default = null
}
variable "assign_id" {
type = string
description = "Assign groups to an ID"
default = null
}
variable "user_role_map" {
type = map(object({ name = string, role = string }))
description = "An object with names and permissions (Built-in)"
default = {
Owner = {
name = "owner"
role = "Owner"
},
Contributor = {
name = "contributor"
role = "Contributor"
},
Reader = {
name = "reader"
role = "Reader"
}
}
}