Skip to content

Commit

Permalink
Made the statements about exclude_delete: false slightly more accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
melinath committed Dec 4, 2024
1 parent 02e5bc5 commit 0429a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/develop/resource-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ delete_verb: 'POST'
```

### `exclude_delete`
If true, deleting the resource will only remove it from the Terraform state and will not call an API. If false, deleting the resource will call the [`delete_url`]({{< ref "#delete_url" >}}) using the HTTP [`delete_verb`]({{< ref "#delete_verb" >}}).
If true, deleting the resource will only remove it from the Terraform state and will not call an API. If false, deleting the resource will run the standard deletion behavior and/or any [custom code]({{< ref "/develop/custom-code" >}}) related to deletion.
This should be used if the resource can never be deleted in the API, and there is no other reasonable action to take on deletion. See [Deletion behaviors]({{< ref "/best-practices/deletion-behaviors" >}}) for more information.

```yaml
Expand Down

0 comments on commit 0429a2e

Please sign in to comment.