-
Notifications
You must be signed in to change notification settings - Fork 13
/
outputs.tf
31 lines (24 loc) · 1.18 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
output "account_assignment_data" {
value = local.flatten_account_assignment_data
description = "Tuple containing account assignment data"
}
output "principals_and_assignments" {
value = local.principals_and_their_account_assignments
description = "Map containing account assignment data"
}
output "sso_groups_ids" {
value = { for k, v in aws_identitystore_group.sso_groups : k => v.group_id }
description = "A map of SSO groups ids created by this module"
}
output "sso_applications_arns" {
value = { for k, v in aws_ssoadmin_application.sso_apps : k => v.application_arn }
description = "A map of SSO Applications ARNs created by this module"
}
output "sso_applications_group_assignments" {
value = { for k, v in aws_ssoadmin_application_assignment.sso_apps_groups_assignments : k => v.principal_id }
description = "A map of SSO Applications assignments with groups created by this module"
}
output "sso_applications_user_assignments" {
value = { for k, v in aws_ssoadmin_application_assignment.sso_apps_users_assignments : k => v.principal_id }
description = "A map of SSO Applications assignments with users created by this module"
}