We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efe8921 commit 6e0ca94Copy full SHA for 6e0ca94
modules/iam_identity_center/variables.tf
@@ -1,5 +1,5 @@
1
variable "permission_sets" {
2
- type = list(object({
+ type = map(object({
3
name = string
4
description = string
5
relay_state = string
modules/iam_identity_users/main.tf
@@ -29,6 +29,6 @@ resource "aws_identitystore_user" "this" {
29
resource "aws_identitystore_group_membership" "this" {
30
for_each = var.users
31
identity_store_id = tolist(data.aws_ssoadmin_instances.this.identity_store_ids)[0]
32
- group_id = aws_identitystore_user.this[each.value.groups].id
+ group_id = aws_identitystore_group.this[each.value.groups].id
33
member_id = aws_identitystore_user.this[each.key].id
34
}
0 commit comments