how do i find the import id of existing ebs volume...
# aws
w
how do i find the import id of existing ebs volume ? https://www.pulumi.com/blog/adopting-existing-cloud-resources-into-pulumi/ is very vague about this.
is it the resource ARN?
or the volume id?
f
From https://www.pulumi.com/docs/intro/concepts/programming-model/#import:
This ID is the same that would be returned by the `id`property for any resource created by Pulumi; this is resource-specific.
So for EBS it would be the volume id 🙂
w
thx