Hey there! How can I make sure in a `ComponentRes...
# python
d
Hey there! How can I make sure in a
ComponentResource
that another type of resource will always be created by Pulumi before? I can use
depends_one
, but it's quite verbose and I would like to find a better way for the end user. To clarify, the
ComponentResource
I'm writing is for deploying a bunch of Kubernetes resources, and I would like to make sure that
pulumi_kubernetes.core.v1.Namespace
are applied first. Thanks in advance! 🙏