This message was deleted.
# typescript
s
This message was deleted.
g
Here's some information on import resources into Pulumi: https://www.pulumi.com/docs/guides/adopting/import/
Here's another good read that talks about different ways of importing infrastructure, into code. https://www.pulumi.com/blog/adopting-existing-cloud-resources-into-pulumi/
l
If you don't want to use Pulumi to manage the resource then you should just hard code the ARN. ARNs are intended to be as long-lived as the resource, so if it's an always-there resource, it's appropriate to just hard code it. If you want to query other properties of the resource, all resource classes in Pulumi have a static
get()
that will load an unmanaged resource object.