mirror of
https://github.com/opentofu/opentofu.git
synced 2026-06-08 16:12:24 -04:00
7 lines
114 B
HCL
7 lines
114 B
HCL
resource "aws_instance" "foo" {
|
|
count = 3
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = length(aws_instance.foo)
|
|
}
|