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