https://pulumi.com logo
#aws
Title
g

gentle-diamond-70147

03/04/2020, 4:05 PM
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