mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
9 lines
111 B
HCL
9 lines
111 B
HCL
variable "foo" {
|
|
sensitive = true
|
|
default = "foo"
|
|
}
|
|
|
|
data "null_data_source" "testing" {
|
|
foo = var.foo
|
|
}
|