With terraform, we can use `count` to create a loo...
# python
f
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.