Skip to content

Commit 0ed42e6

Browse files
andrecorreanetorrywhenHalimer
authored
Release 0.2.6 (#34)
* 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>
1 parent 64297a2 commit 0ed42e6

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

RELEASE-NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# December 09, 2024 Release Notes - 0.2.6
2+
## Updates
3+
1. [Identity Domains module](./identity-domains/)
4+
- 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.
5+
6+
17
# November 01, 2024 Release Notes - 0.2.5
28
## Updates
39
1. [Policies module](./policies/)

identity-domains/groups.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ locals {
2424
resource "oci_identity_domains_group" "these" {
2525
for_each = var.identity_domain_groups_configuration != null ? var.identity_domain_groups_configuration.groups : {}
2626

27+
attribute_sets = ["all"]
2728
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)
2829

2930
display_name = each.value.name

release.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.5
1+
0.2.6

0 commit comments

Comments
 (0)