mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
Signed-off-by: Andrei Ciobanu <andrei.ciobanu@opentofu.org> Signed-off-by: Christian Mesh <christianmesh1@gmail.com>
11 lines
307 B
HCL
11 lines
307 B
HCL
variable "in" {
|
|
type = string
|
|
description = "Variable that is marked as ephemeral and doesn't matter what value is given in, ephemeral or not, the value evaluated for this variable will be marked as ephemeral"
|
|
ephemeral = true
|
|
}
|
|
|
|
output "out1" {
|
|
value = var.in
|
|
ephemeral = true // NOTE: because
|
|
}
|