mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-05 22:00:22 -05:00
12 lines
146 B
HCL
12 lines
146 B
HCL
variable "test_var" {
|
|
default = "bar-var"
|
|
}
|
|
|
|
output "test" {
|
|
value = var.test_var
|
|
}
|
|
|
|
resource "test_instance" "test" {
|
|
ami = var.test_var
|
|
}
|