Skip to content

Commit

Permalink
Merge pull request #754 from ionos-cloud/fix/user_membership
Browse files Browse the repository at this point in the history
Fix: Remove extra check
  • Loading branch information
cciopa-ionos authored Jan 29, 2025
2 parents 25ab0b6 + 319f679 commit b909c31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 6.7.0
### Fixes
- Fix [#735](https://github.com/ionos-cloud/terraform-provider-ionoscloud/issues/735) by reading all values for `api_subnet_allow_list`, not only non-nill values.
- Fix [#748](https://github.com/ionos-cloud/terraform-provider-ionoscloud/issues/748) by removing unecessary error check
### Features
- Add new read-only attribute: `ipv4_cidr_block` to `ionoscloud_lan` resource and data source.
- Make `volume` optional for `ionoscloud_server` resource.
Expand Down
4 changes: 0 additions & 4 deletions ionoscloud/resource_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,6 @@ func resourceUserRead(ctx context.Context, d *schema.ResourceData, meta interfac
return diag.FromErr(err)
}

if err = d.Set("group_ids", getUserGroups(&user)); err != nil {
return diag.FromErr(err)
}

return nil
}

Expand Down

0 comments on commit b909c31

Please sign in to comment.