mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-29 22:02:27 -04:00
* command/jsonplan: sort resources by address * command/show: extend test case to include resources with count * command/json*: document resource ordering as consistent but undefined
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
|
|
}
|