Is there a way to import all resources created by ...
# kubernetes
b
Is there a way to import all resources created by https://www.pulumi.com/docs/reference/pkg/kubernetes/yaml/configfile/ ? I've already applied the yaml file by hand and would now like pulumi to manage it.
b
you would need to iterate though the yaml file and get the resource names, you can't import directly
b
You should be able to use
ConfigGroup
with a
transformations
to set the
import
field on each object's options.
❤️ 1
b
Alright, thanks 🙂