Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix active directory group optional to support data model #13

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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