Skip to content

Commit

Permalink
added user_identity_group dependency in internal_user
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-mazurkiewicz committed Mar 4, 2024
1 parent 3491895 commit 06cde2f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ise_identity_management.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ resource "ise_internal_user" "internal_user" {
identity_groups = length(try(each.value.user_identity_groups, [])) > 0 ? join(",", [for i in try(each.value.user_identity_groups, []) : ise_user_identity_group.user_identity_group[i].id]) : null
password_never_expires = try(each.value.password_never_expires, local.defaults.ise.identity_management.internal_users.password_never_expires, null)
password_id_store = try(each.value.password_id_store, local.defaults.ise.identity_management.internal_users.password_id_store, null)

depends_on = [ise_user_identity_group.user_identity_group]
}

locals {
Expand Down

0 comments on commit 06cde2f

Please sign in to comment.