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

     1  /* This multi-line comment
     2     should survive */
     3  
     4  # This comment should survive
     5  variable "foo" {
     6    default = 1 // This comment should also survive
     7  }
     8  
     9  // These adjacent comments should remain adjacent
    10  // to one another.
    11  
    12  variable "bar" {
    13    /* This comment should survive too */
    14    description = "bar the baz"
    15  }
    16  
    17  // This comment that isn't attached to anything should survive.