mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
2a0334125c
This attempts to reproduce the issue described in #2598 whereby outputs added after an apply are not reflected in the output. As per the issue the outputs are described using the JSON syntax.
7 lines
108 B
HCL
7 lines
108 B
HCL
provider "aws" {}
|
|
|
|
resource "aws_instance" "test" {
|
|
foo = "${format("foo%d", count.index)}"
|
|
count = 2
|
|
}
|