language-hcl-0.1.1.0: hcl and conf parsers and pretty-printers for the Haskell programming language.

Safe HaskellNone
LanguageHaskell2010

Data.HCL.Types

Synopsis

Documentation

type HCLDoc = [HCLStatement] Source #

The HCL document is just a list of statements

data HCLStatement Source #

Statements may be "objects", of form:

provider "aws" {
# more
}

Or they may be assignments:

a = "b"

data HCLValue Source #