Hello, I'm making use of the Automation API to spi...
# getting-started
f
Hello, I'm making use of the Automation API to spin up some infrastructure. However, this process takes ~5-10 mins because of the resources being created/modified. Is there a recommended way to report some sort of progress of the stack being spun up? Would hitting the Pulumi REST API to get the stack and resource statuses be a good way to do that?
b
are you looking for the overall process of the stack, or the progress of the cloud resources?
f
Hmm, ideally I'd want to represent progress with some sort of progress bar. Probably just seeing the status of each resource would be sufficient. ie. "8/10 resources complete"
I could weight some of the more time-intensive resources accordingly if needed.
b
you could totally build that, I have an example at github.com/jaxxstorm/connectme
f
Thanks, I'll take a look 👍