Changelog

Signed-off-by: Ilia Gogotchuri <ilia.gogotchuri0@gmail.com>
This commit is contained in:
Ilia Gogotchuri
2025-11-25 14:58:34 +04:00
parent d4dc1a8204
commit 2b488577a4
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ UPGRADE NOTES:
ENHANCEMENTS:
- `prevent_destroy` arguments in the `lifecycle` block for managed resources can now use references to other symbols in the same module, such as to a module's input variables. ([#3474](https://github.com/opentofu/opentofu/issues/3474), [#3507](https://github.com/opentofu/opentofu/issues/3507))
- New `lifecycle` meta-argument `destroy` for altering resource destruction behavior. When set to `false` OpenTofu will not retain resources when they are planned for destruction. ([#3409](https://github.com/opentofu/opentofu/pull/3409))
- OpenTofu now uses the `BROWSER` environment variable when launching a web browser on Unix platforms, as long as it's set to a single command that can accept a URL to open as its first and only argument. ([#3456](https://github.com/opentofu/opentofu/issues/3456))
BUG FIXES:

View File

@@ -172,7 +172,7 @@ block for a managed resource:
requires replacement, or is explicitly destroyed using the `tofu destroy` command,
OpenTofu will destroy the corresponding infrastructure object. Setting this
meta-argument to `false` changes this behavior so that OpenTofu will instead
"forget" the resource, removing it from the state without destroying the actual
"forget" the resource instance, removing it from the state without destroying the actual
infrastructure object.
:::note