mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
8 lines
115 B
HCL
8 lines
115 B
HCL
resource "aws_instance" "test" {
|
|
count = 3
|
|
}
|
|
|
|
output "computed_list" {
|
|
value = ["${aws_instance.test.*.id}"]
|
|
}
|