mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 13:00:32 -05:00
The new nav structure demanded a few new pages that give context about a feature or workflow. In a few cases, they take text from an existing page. Co-authored-by: Tu Nguyen <im2nguyen@users.noreply.github.com> Co-authored-by: Judith Malnick <judith.patudith@gmail.com>
22 lines
1020 B
Markdown
22 lines
1020 B
Markdown
---
|
|
layout: "language"
|
|
page_title: "Syntax Overview - Configuration Language"
|
|
---
|
|
|
|
# Syntax
|
|
|
|
The majority of the Terraform language documentation focuses on the practical
|
|
uses of the language and the specific constructs it uses. The pages in this
|
|
section offer a more abstract view of the Terraform language.
|
|
|
|
- [Configuration Syntax](/docs/configuration/syntax.html) describes the native
|
|
grammar of the Terraform language.
|
|
- [JSON Configuration Syntax](/docs/configuration/syntax-json.html) documents
|
|
how to represent Terraform language constructs in the pure JSON variant of the
|
|
Terraform language. Terraform's JSON syntax is unfriendly to humans, but can
|
|
be very useful when generating infrastructure as code with other systems that
|
|
don't have a readily available HCL library.
|
|
- [Style Conventions](/docs/configuration/style.html) documents some commonly
|
|
accepted formatting guidelines for Terraform code. These conventions can be
|
|
enforced automatically with [`terraform fmt`](/docs/commands/fmt.html).
|