-
Notifications
You must be signed in to change notification settings - Fork 13
/
outputs.tf
40 lines (32 loc) · 1.53 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
# ------------------------------------------------------------------------------
# OUTPUT CALCULATED VARIABLES (prefer full objects)
# ------------------------------------------------------------------------------
output "all_members_team" {
description = "The outputs of the all members team that contains all members of your organization."
value = try(github_team.all[0], {})
}
# ------------------------------------------------------------------------------
# OUTPUT ALL RESOURCES AS FULL OBJECTS
# ------------------------------------------------------------------------------
output "blocked_users" {
description = "The list of users that are blocked by the organiation."
value = github_organization_block.blocked_user
}
output "memberships" {
description = "A map of members and admins keyed by username."
value = github_membership.membership
}
output "projects" {
description = "A map of projects keyed by the id (default: project name)."
value = github_organization_project.project
}
output "settings" {
description = "The outputs of the organization settings."
value = try(github_organization_settings.settings[0], {})
}
# ------------------------------------------------------------------------------
# OUTPUT ALL INPUT VARIABLES
# ------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# OUTPUT MODULE CONFIGURATION
# ------------------------------------------------------------------------------