Skip to content

Commit

Permalink
fix client usage
Browse files Browse the repository at this point in the history
  • Loading branch information
1riatsila1 committed Sep 11, 2024
1 parent a341b55 commit d863e47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config-api-provider/provider/resources/group.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (r *groupResource) Read(ctx context.Context, req resource.ReadRequest, resp

// Update state from client response
state.Name = types.StringValue(group.Name)
state.ParentGroupId = types.StringValue(group.ParentUid)
state.ParentGroupId = types.StringValue(*group.ParentUid.Get())

// Set refreshed state
diags = resp.State.Set(ctx, &state)
Expand Down

0 comments on commit d863e47

Please sign in to comment.