-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
55 lines (44 loc) · 1.91 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
output "aws_user_permissionset" {
description = "The AWS SSO Permission Set for users"
value = { for k, v in data.aws_ssoadmin_permission_set.aws_user_permissionset : k => v }
}
output "aws_group_permissionset" {
description = "The AWS SSO Permission Set for groups"
value = { for k, v in data.aws_ssoadmin_permission_set.aws_group_permissionset : k => v }
}
output "aws_group_ids" {
description = "The IDs of the AWS Identity Store Groups"
value = { for k, v in data.aws_identitystore_group.aws_group : k => v.group_id }
}
output "aws_identitystore_user" {
description = "The AWS Identity Store User details"
value = aws_identitystore_user.aws_user
}
output "aws_identitystore_group" {
description = "The AWS Identity Store Group details"
value = aws_identitystore_group.aws_group
}
output "aws_identitystore_group_membership" {
description = "The AWS Identity Store Group Membership details"
value = aws_identitystore_group_membership.aws_membership
}
output "aws_ssoadmin_permission_set" {
description = "The AWS SSO Admin Permission Set details"
value = aws_ssoadmin_permission_set.permissionset
}
output "aws_ssoadmin_permission_set_inline_policy" {
description = "The AWS SSO Admin Permission Set Inline Policy details"
value = aws_ssoadmin_permission_set_inline_policy.inline_policy
}
output "aws_ssoadmin_managed_policy_attachment" {
description = "The AWS SSO Admin Managed Policy Attachment details"
value = aws_ssoadmin_managed_policy_attachment.managed_policy_attachment
}
output "aws_ssoadmin_account_assignment_user" {
description = "The AWS SSO Admin Account Assignment User details"
value = aws_ssoadmin_account_assignment.sso_account_user
}
output "aws_ssoadmin_account_assignment_group" {
description = "The AWS SSO Admin Account Assignment Group details"
value = aws_ssoadmin_account_assignment.sso_account_group
}