How to wait for a resource to get created and take...
# golang
c
How to wait for a resource to get created and take the id. for example, 1. Create Resource Group, 2. Wait to get the ID 3. Update a variable
b
Pulumi handles this for you with Outputs: https://www.pulumi.com/docs/intro/concepts/programming-model/#outputs

https://www.youtube.com/watch?v=lybOxul2otM

👍 1