Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Nov 13, 2023
1 parent 22269e0 commit fba977b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion group-assignment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "aws_identitystore_group_membership" "group" {
}

resource "aws_ssoadmin_account_assignment" "accounts" {
for_each = var.account_ids != null ? toset(local.account_ids) : toset([])
for_each = var.org_account_ids != null ? toset(local.account_ids) : toset([])
instance_arn = var.instance_arn
# permission_set_arn = var.permissionset_arn
permission_set_arn = local.permissionset_arn
Expand Down

0 comments on commit fba977b

Please sign in to comment.