mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-04 01:01:25 -05:00
14 lines
179 B
HCL
14 lines
179 B
HCL
variable "test_var" {
|
|
default = "foo-var"
|
|
}
|
|
resource "test_instance" "test" {
|
|
ami = var.test_var
|
|
count = 3
|
|
}
|
|
|
|
output "test" {
|
|
value = var.test_var
|
|
}
|
|
|
|
provider "test" {}
|