Closed jfelixetcetera closed 8 years ago
Fixed and pushed an update.
So fast, thanks!
@GiantToast I often comment out single lines within blocks I later toggle, which causes problems:
resource "aws_autoscaling_group" "nomad" {
...
/*load_balancers = ["${aws_elb.api.name}"]*/
...
}
/*
resource "aws_autoscaling_group" "nomad" {
...
/*load_balancers = ["${aws_elb.api.name}"]*/ <-- this breaks
...
}
*/
Would you be into a PR that comments a single line using #
or //
rather than /* */
?
This is valid syntax per the spec: https://github.com/hashicorp/hcl