can anyone share how to use the cli to show the de...
# aws
a
can anyone share how to use the cli to show the details of a resource in the state file? like the terraform state show
b
What details are you looking for? You can use
pulumi stack --show-urns
which will show the URNs of the resources in the stack. Within the URNs you can see the type of the resource. Is that what you're looking for
a
thanks! I think that i found the command, looks like it can be achieved by "pulumi stack export"
Yeah, but your command's output is more close to terraform state show. 🙂. thanks for sharing!