-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
70 lines (58 loc) · 1.77 KB
/
outputs.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
output "id" {
description = "The ID of the team."
value = github_team.this.id
}
output "node_id" {
description = "The Node ID of the team."
value = github_team.this.node_id
}
output "slug" {
description = "The slug of the team."
value = github_team.this.slug
}
output "name" {
description = "The name of the team."
value = github_team.this.name
}
output "description" {
description = "The description of the team."
value = github_team.this.description
}
output "is_secret" {
description = "Whether to be only visible to the people on the team and people with owner permissions."
value = var.is_secret
}
output "parent_id" {
description = "The ID of the parent team."
value = github_team.this.parent_team_id
}
output "default_maintainer_enabled" {
description = "Whether to add the creating user as a default maintainer."
value = github_team.this.create_default_maintainer
}
output "maintainers" {
description = "A list of the maintainers of the team."
value = var.maintainers
}
output "members" {
description = "A list of the members of the team."
value = var.members
}
output "identity_provider_team_sync" {
description = "A configuration to manage team members using your identity provider groups."
value = {
enabled = var.identity_provider_team_sync.enabled
groups = [
for group in var.identity_provider_team_sync.groups :
local.idp_groups[group]
]
}
}
output "ldap_group_dn" {
description = "The LDAP Distinguished Name of the group where membership will be synchronized."
value = var.ldap_group_dn
}
output "code_review_auto_assignment" {
description = "A configuration for code review auto assignment."
value = var.code_review_auto_assignment
}