mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
61982be9c6
The plan diffs for aws_instance.a and aws_instance.b should be identical.
8 lines
146 B
HCL
8 lines
146 B
HCL
resource "aws_instance" "a" {
|
|
foo = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 20]
|
|
}
|
|
|
|
resource "aws_instance" "b" {
|
|
foo = "${aws_instance.a.foo}"
|
|
}
|