https://pulumi.com logo
#python
Title
f

fierce-state-11693

06/14/2019, 3:03 PM
With terraform, we can use
count
to create a loop for creating resources. I'm able to get the output of those resources in a list with the following.
Copy code
output "public_subnet_ids" {
  value = ["${aws_subnet.public.*.id}"]
}
I'm trying to replicate this behavior with pulumi but cannot figure out how to get the same output list using export. I'd appreciate any help.