mirror of
https://github.com/opentofu/opentofu.git
synced 2026-03-01 12:50:32 -05:00
13 lines
179 B
HCL
13 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" {}
|