File: invalid-braces.tf

package info (click to toggle)
golang-github-hashicorp-terraform-config-inspect 0.0~git20230614.f32df32-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 472 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
8
# The opening brace is required to be on the same line as the block header
# under HCL 2, and so this should produce an error, causing us to use HCL 1's
# parser instead.

variable foo
{
  default = "123"
}