hcl/specsuite/tests/expressions/heredoc.hcl
2019-08-05 16:24:22 -07:00

102 lines
1009 B
HCL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

normal = {
basic = <<EOT
Foo
Bar
Baz
EOT
indented = <<EOT
Foo
Bar
Baz
EOT
indented_more = <<EOT
Foo
Bar
Baz
EOT
interp = <<EOT
Foo
${bar}
Baz
EOT
newlines_between = <<EOT
Foo
Bar
Baz
EOT
indented_newlines_between = <<EOT
Foo
Bar
Baz
EOT
marker_at_suffix = <<EOT
NOT EOT
EOT
}
flush = {
basic = <<-EOT
Foo
Bar
Baz
EOT
indented = <<-EOT
Foo
Bar
Baz
EOT
indented_more = <<-EOT
Foo
Bar
Baz
EOT
indented_less = <<-EOT
Foo
Bar
Baz
EOT
interp = <<-EOT
Foo
${bar}
Baz
EOT
interp_indented_more = <<-EOT
Foo
${bar}
Baz
EOT
interp_indented_less = <<-EOT
Foo
${space_bar}
Baz
EOT
tabs = <<-EOT
Foo
Bar
Baz
EOT
unicode_spaces = <<-EOT
Foo (there's two "em spaces" before Foo there)
Bar
Baz
EOT
newlines_between = <<-EOT
Foo
Bar
Baz
EOT
indented_newlines_between = <<-EOT
Foo
Bar
Baz
EOT
}