Hi everyone! I'm trying to use `pulumi import` to ...
# general
c
Hi everyone! I'm trying to use
pulumi import
to import some resources from Github. Do you have any solution from that error? If not, can you point me to the source code of this command so I can write a bugfix? Related to: https://github.com/pulumi/pulumi/issues/7046 https://github.com/pulumi/pulumi-aws/issues/1368
l
shouldn’ t be
"deliver:service"
with the quotes?
c
@limited-army-96747 I'm trying to import this resource from AWS, this is a tag defined there, in AWS you don't need a quote to define a tag in that way. I assume pulumi is not wrapping with quotes itself
I edited the message so you can see the issues related to it
l
I know it is a tag, but usually, when you have characters like
:
or
/
you need to wrap the object key with quotes
c
ah, but not on AWS, this is not common according to the docs
l
that is not aws
c
that's what I said 😄 the problem is on Pulumi's side when importing
l
can you paste the code?
ah nvm, you are running a cli command
c
exactly
l
did you try with `
Copy code
--disable-integrity-checking
and
--skip-preview
?
that might help
c
interesting, didn't know these attributes. Second time using Pulumi 😄 but yea, it didn't help. thanks for the suggestion tho, I'm gonna explore the other options
h
what's ".pp"?
c
no idea
this is an output from a CLI command:
Copy code
AWS_PROFILE=staging pulumi import aws:ec2/vpc:Vpc elasticache-vpc vpc-01454ca8099ec2c88 -v
well, it seems the resource was updated even with this problem, and I could use pulumi up fine. I just didn't try that -.- thanks guys!