Skip to content

Commit

Permalink
Release 0.2.6 (#34)
Browse files Browse the repository at this point in the history
* Release 0.2.1

* Release 0.2.2

* feat: TF < 1.3.0 restriction removed

* feat: TF binary equal or greater than 1.3.0 requirement added

* chore: release notes and version bump

* chore: release notes, tag and SPECs updated

* fix typo in dynamic groups that refered to domain groups

* fix: version = "<= 5.16.0" removed

* chore: release notes, version and spec updated

* feat: OCI FW and ZPR IAM policies added

* feat: examples updated

* chore: release notes and version update

* chore: release notes updated.

* fix: attribute_sets = ["all"] added to oci_identity_domains_group

* chore: release notes and version increment

---------

Signed-off-by: Andre Correa <andre.correa@oracle.com>
Co-authored-by: Rory Nguyen <rory.nguyen@oracle.com>
Co-authored-by: josh_hammer <josh.hammer@oracle.com>
  • Loading branch information
3 people authored Dec 9, 2024
1 parent 64297a2 commit 0ed42e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# December 09, 2024 Release Notes - 0.2.6
## Updates
1. [Identity Domains module](./identity-domains/)
- Added *attribute_sets = ["all"]* to *oci_identity_domains_group* resource block to avoid group memberships being updated when there are no updates to group memberships. Bug https://github.com/oracle/terraform-provider-oci/issues/1933.


# November 01, 2024 Release Notes - 0.2.5
## Updates
1. [Policies module](./policies/)
Expand Down
1 change: 1 addition & 0 deletions identity-domains/groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ locals {
resource "oci_identity_domains_group" "these" {
for_each = var.identity_domain_groups_configuration != null ? var.identity_domain_groups_configuration.groups : {}

attribute_sets = ["all"]
idcs_endpoint = contains(keys(oci_identity_domain.these),coalesce(each.value.identity_domain_id,"None")) ? oci_identity_domain.these[each.value.identity_domain_id].url : (contains(keys(oci_identity_domain.these),coalesce(var.identity_domain_groups_configuration.default_identity_domain_id,"None") ) ? oci_identity_domain.these[var.identity_domain_groups_configuration.default_identity_domain_id].url : data.oci_identity_domain.grp_domain[each.key].url)

display_name = each.value.name
Expand Down
2 changes: 1 addition & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.5
0.2.6

0 comments on commit 0ed42e6

Please sign in to comment.