mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
8 lines
146 B
Terraform
8 lines
146 B
Terraform
|
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}"
|
||
|
}
|