Files
Mark Keisler 26663ac1ee add HCL/Terraform support (#222)
* add HCL/Terraform support

* update README with HCL language listed
2018-04-26 14:54:35 +01:00

23 lines
263 B
Terraform

# 22 lines 11 code 7 comments 4 blanks
variable "foo" "bar" {
default = "yes"
}
/* We like
multiple lines
*/
locals {
// this
this = "that"
# list
more = ["foo", "bar"]
/* map */
map = {
yep = "nope" # bad comment
nope = "yep"
}
}