Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ BUG FIXES:

* resource/xray_curation_policy: Fix false `Decision owners required` validation error when `decision_owners` is sourced from another resource, module variable, or other value that is unknown until apply, while `waiver_request_config = "manual"`. The `decisionOwnersRequiredValidator` now skips unknown values and defers validation to the plan phase. Issue: [#433](https://github.com/jfrog/terraform-provider-xray/issues/433)

IMPROVEMENTS:

* resource/xray_security_policy: Include the policy name in the error message when a policy delete fails, making it easier to identify which policy could not be removed.

## 3.1.11(Jun 9, 2026).

BUG FIXES:
Expand Down
2 changes: 1 addition & 1 deletion pkg/xray/resource/policies.go
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ func (r *PolicyResource) Delete(ctx context.Context, req resource.DeleteRequest,
}

if response.IsError() {
utilfw.UnableToDeleteResourceError(resp, policyError.Error)
utilfw.UnableToDeleteResourceError(resp, fmt.Sprintf("failed to delete policy %q: %s", state.Name.ValueString(), policyError.Error))
return
}

Expand Down
Loading