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