Skip to content

Commit

Permalink
* 1.2.2 -- 2024-04-26
Browse files Browse the repository at this point in the history
  - group-assignment
    - add depends_on so group gets created before adding users
  • Loading branch information
badra001 committed Apr 26, 2024
1 parent 8550ee8 commit d066987
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@
* 1.2.1 -- 2024-04-24
- group-assignment
- variable create_ldap_members to add users to ldap group (if created)

* 1.2.2 -- 2024-04-26
- group-assignment
- add depends_on so group gets created before adding users
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.2.1"
_module_version = "1.2.2"
}
1 change: 1 addition & 0 deletions group-assignment/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ resource "ldap_object_attributes" "users" {
attributes = [
{ member = each.value.dn },
]
depends_on = [ldap_object.group]
}

## gov.census.tco:CPASS_APP=CSVD_CSVD IC lab
Expand Down

0 comments on commit d066987

Please sign in to comment.