https://pulumi.com logo
r

rhythmic-hair-33677

12/10/2019, 9:22 PM
As an example, if I deploy a CertificateRequest resource, and I need to watch that a Certificate is created by the k8s operator. As everything is promise-like, I'm not entirely sure how to do that beyond making a dummy resource with CRUD that performs those validations and then having other objects dependsOn that. If that makes sense.
w

white-balloon-205

12/10/2019, 9:31 PM
r

rhythmic-hair-33677

12/10/2019, 9:50 PM
Oh that is clever. That looks like what I need. So essentially put additional await logic in apply and then depend on its result. Thank you.