Are there any risks in doing an `pulumi import` of...
# general
s
Are there any risks in doing an
pulumi import
of a CloudFormation stack? My understanding is it just shows what code you need to add via stdout and doesn't actually add anything to the CF or Pulumi state until you actually add it to your code. Is that correct?
b
it does add to the pulumi state when you run it, but you can
pulumi state delete
before you
up
if you just want to generate the code
s
when doing the
import
and then
up
does it then try to change the name of resource with the generated characters after
-
?
b
it shouldn't change anything at all
s
thanks that clears things up