Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
axon-droe committed Jul 9, 2024
1 parent 6b9efbc commit 79ba170
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Empty file added examples/.gitkeep
Empty file.
5 changes: 4 additions & 1 deletion internal/provider/create_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,10 @@ func (r *createResource) Delete(ctx context.Context, req resource.DeleteRequest,
return
}

certClient.DeleteCertificateOperation(ctx, state.Name.ValueString(), nil)
// We don't actually care if this works or not
certResp, err := certClient.DeleteCertificateOperation(ctx, state.Name.ValueString(), nil)
_ = certResp
_ = err

// Set state to fully populated data
diags = resp.State.Set(ctx, state)
Expand Down

0 comments on commit 79ba170

Please sign in to comment.