mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -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.
11 lines
166 B
JSON
11 lines
166 B
JSON
{
|
|
"output": {
|
|
"firstOutput": {
|
|
"value": "${aws_instance.test.0.foo}"
|
|
},
|
|
"secondOutput": {
|
|
"value": "${aws_instance.test.1.foo}"
|
|
}
|
|
}
|
|
}
|