github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/testdata/valid/inline-comments/want/main.tf (about)

     1  variable "list" {
     2    type = list(string)
     3  
     4    default = [
     5      "foo", # I am a comment
     6      "bar", # I am also a comment
     7      "baz",
     8    ]
     9  }
    10  
    11  variable "list2" {
    12    type = list(string)
    13  
    14    default = [
    15      "foo",
    16      "bar",
    17      "baz",
    18    ]
    19  }
    20  
    21  variable "list_the_third" {
    22    type = list(string)
    23  
    24    default = ["foo", "bar", "baz"]
    25  }