mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
9 lines
138 B
HCL
9 lines
138 B
HCL
resource "aws_instance" "foo" {
|
|
num = "2"
|
|
compute = "list.#"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = aws_instance.foo.list.0
|
|
}
|