mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-23 22:00:54 -04:00
Revert the evaluation change from #29862. While returning a dynamic value for all expanded resources during validation is not optimal, trying to work around this using unknown maps and lists is causing other undesirable behaviors during evaluation.
5 lines
86 B
HCL
5 lines
86 B
HCL
resource "aws_instance" "web" {
|
|
foo = "${aws_instance.web.*.foo}"
|
|
count = 4
|
|
}
|