This commit is contained in:
Andrei Ciobanu 2026-05-27 06:48:48 +00:00 committed by GitHub
commit d8b473c3f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,4 +75,11 @@ expressions such as references to data exported by resources, arithmetic, condit
Reference: [link](https://opentofu.org/docs/language/expressions/)
### Variable (HCL)
Anything that's available to refer to in the current evaluation context.
Anything that's available to refer to in the current evaluation context.
## General documentation
### `resource` vs `object`
In contexts discussing the relationship or interaction between the `resource` HCL block and the associated remote object that it handles, it's recommended to use "resource" for the HCL block and "object" for the remote object (handled by the provider).
Reference: [link](https://github.com/opentofu/opentofu/pull/4153)