mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-22 11:17:35 -05:00
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org> Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
7 lines
270 B
Plaintext
7 lines
270 B
Plaintext
// Running this configuration is expected to have an error since `value` is not a write-only argument.
|
|
// Regular resources arguments are not allowed to use ephemeral variables and values
|
|
resource "simple_resource" "test_res" {
|
|
provider = simple.s1
|
|
value = var.in
|
|
}
|