Hi, I am using automation api and want to know is ...
# general
h
Hi, I am using automation api and want to know is there any way to get resource urn list for particular stack. similar to 
pulumi stack --show-urns
r
not directly. you could stack.export() which returns the state and get the resources by mapping over the resources map.
🤘 1