No longer mention that deprecation of module variables and outputs is experimental

Signed-off-by: James Humphries <james@james-humphries.co.uk>
This commit is contained in:
James Humphries
2025-10-23 14:33:14 +01:00
parent 4907623433
commit ef82fadfff
3 changed files with 2 additions and 14 deletions

View File

@@ -299,7 +299,7 @@ For more examples of recording moves associated with instances, refer to
the similar section
[Enabling `count` and `for_each` For a Resource](#enabling-count-or-for_each-for-a-resource).
# Splitting One Module into Multiple
## Splitting One Module into Multiple
As a module grows to support new requirements, it might eventually grow big
enough to warrant splitting into two separate modules.
@@ -452,11 +452,7 @@ both configurations with objects at `aws_instance.a` _and_ configurations with
objects at `aws_instance.b`. In both cases, OpenTofu treats the existing
object as if it had been originally created as `aws_instance.c`.
## Module variables and outputs
:::warning
This feature is considered experimental and the final UX may change in the future.
:::
## Deprecating Module variables and outputs
Refactoring module variables and outputs requires additional changes from module
callers. To properly communicate variables and outputs deprecation, module

View File

@@ -274,10 +274,6 @@ maintainers understand the purpose of the additional dependency.
### `deprecated` — Marking output as deprecated
:::warning
This feature is considered experimental and the final UX may change in the future.
:::
The `deprecated` argument in a module output block indicates its deprecation and potential
removal in the future. This attribute should contain non-empty string and should provide
instructions on how to migrate away from usage of this module output. Here is an example of

View File

@@ -341,10 +341,6 @@ the collection or structure itself is not null.
[inpage-deprecated]: #marking-variable-as-deprecated
:::warning
This feature is considered experimental and the final UX may change in the future.
:::
The `deprecated` argument in a variable block indicates its deprecation and potential
removal in the future. This attribute should contain non-empty string and should provide
instructions on how to migrate away from usage of this variable. Here is an example of the