mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-08 00:02:45 -04: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
|
|
}
|