mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
This test illustrates a failure which occurs during the Input walk, if an interpolation is used with the input of a splat operation resulting in a multi-variable. The bug was found during use of the RC2, but does not correspond to an open issue at present.
8 lines
115 B
HCL
8 lines
115 B
HCL
resource "aws_instance" "test" {
|
|
count = 3
|
|
}
|
|
|
|
output "computed_list" {
|
|
value = ["${aws_instance.test.*.id}"]
|
|
}
|