Code Monkey home page Code Monkey logo

Comments (3)

dtan4 avatar dtan4 commented on August 31, 2024

Thank you for reporting issue :octocat:

The document Tagging Your Amazon EC2 Resources - Amazon Elastic Compute Cloud says:

Generally allowed characters are: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.

So we sometimes want to use ':' as tag name, which is not allowed to HCL parser.

It seems to be good to quote the key.
Quoted name is valid in Terraform.

resource "aws_security_group" "hoge" {
  tags {
    "hoge:fuga" = "fuga"
  }
}
$ terraform plan
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed.

Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.

+ aws_security_group.hoge
    description:    "" => "Managed by Terraform"
    egress.#:       "" => "<computed>"
    ingress.#:      "" => "<computed>"
    name:           "" => "<computed>"
    owner_id:       "" => "<computed>"
    tags.#:         "" => "1"
    tags.hoge:fuga: "" => "fuga"
    vpc_id:         "" => "<computed>"

I will support them ASAP.

from terraforming.

dtan4 avatar dtan4 commented on August 31, 2024

@endemics I implemented quoted tag name at #59 and released it as v0.0.5.
Please check it 😄

from terraforming.

endemics avatar endemics commented on August 31, 2024

Thanks @dtan4 I confirm that terraform now parses without error a tf file generated with terraforming that contains cloudformation-generated tags.

from terraforming.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.