If you use `{ import: "vpc-##################"}`, ...
# aws
g
If you use
{ import: "vpc-##################"}
, Pulumi is assuming ownership of the resource and will delete it if you do a
pulumi destroy
. The
fromExistingIds
.get()
,
getVpc()
, etc. all just "read" the VPC information so Pulumi will not modify or destroy them.
👍 1