Hi there, another question today. is Pulumi suppor...
# general
c
Hi there, another question today. is Pulumi support to detect resources which create manually by user and not managed by Pulumi?
e
We can't detect that automatically, but most resources should support
get
methods which is a way to tell Pulumi that a resource exists and can be used, but that pulumi shouldn't manage it. e.g for ec2 instances: https://www.pulumi.com/registry/packages/aws/api-docs/ec2/instance/#look-up
c
that’s good approach, I’ll follow method
get
to see it can help or not