Files
opentf/internal/terraform/testdata/plan-self-ref-multi-all/main.tf
James Bardin d469e86331 revert 6b8b0617
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.
2021-12-14 17:58:10 -05:00

5 lines
86 B
HCL

resource "aws_instance" "web" {
foo = "${aws_instance.web.*.foo}"
count = 4
}