dtan4 / terraforming

Export existing AWS resources to Terraform style (tf, tfstate) / No longer actively maintained
http://terraforming.dtan4.net/
MIT License
4.3k stars 659 forks source link

Tags incorrectly formatted when exporting EC2. #487

Closed ARSport closed 4 years ago

ARSport commented 4 years ago

When doing the export to ec2 terraforming ec2 the tags appear in the following format:

    tags {
        "Team" = "teamx"
        "Name" = "super-instance-new"
        "Purpose" = "production"

When trying to plan that, terraform (latest) complain about the format and have to manually correct to

    tags = {
        Team = "teamx"
        Name = "super-instance-new"
        Purpose = "production"
negrusti commented 4 years ago

this applies to tags everywhere, not just EC2

ARSport commented 4 years ago

I am closing this one in favor of #484 which haves a fix too.