Skip to content

Commit

Permalink
Fix active directory group optional to support data model (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba-mazurkiewicz authored Oct 21, 2024
1 parent f681a5f commit 28f1e40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 0.1.2 (unreleased)

- Fix active directory group optional
- Added endpoints resource support
- Added support for default user identity groups assignment under internal users
- Fix description attribute of `network_device_groups_children_children`
Expand Down
2 changes: 1 addition & 1 deletion ise_identity_management.tf
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ locals {

active_directory_groups = {
for ad in try(local.ise.identity_management.active_directories, []) : ad.name => [
for group in ad.groups : {
for group in try(ad.groups, []) : {
name = group
type = try(local.active_directory_groups_all[ad.name][group].type, null)
sid = try(local.active_directory_groups_all[ad.name][group].sid, null)
Expand Down

0 comments on commit 28f1e40

Please sign in to comment.