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

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