A general-purpose HCL2 parser written in Crystal. Does not make any domain assumptions. Aims to supports the standard HCL2 types and map to the HCL2 informational model.
HCL2 support is considered feature complete. However, it does not yet run against the spec test suite, so there may be situations in which some documents do not work as they should. Please report any issues here.
hcl.cr
has the following goals, in order of importance:
- Correctly implement the HCL2 spec
- Be compatible with the Go implementation
- Easy to work with
- Reasonably performant and efficient
-
Add the dependency to your
shard.yml
:dependencies: hcl: github: maxfierke/hcl.cr version: ~> 0.2.2
-
Run
shards install
For most use-cases, schema-based parsing will be the easiest to work with.
hcl.cr
provides an HCL::Serializable
module, which can be used much like
JSON::Serializable
and YAML::Serializable
from the Crystal standard library.
The module allows you to define mappings for attributes, blocks, and labels on
your own classes and structs, and provides convienent self.from_hcl
and to_hcl
methods.
See documentation on HCL::Serializable
for more information.
For more advanced use cases, you can use the HCL::Parser
class and work
with the AST nodes directly. HCL::Builder
can also be used to build HCL ASTs
using a DSL, and create arbitrary HCL documents.
require "hcl"
SRC_TEXT = <<-HEREDOC
# An AMI
variable "ami" {
description = "the AMI to use"
}
/* A multi
line comment. */
resource "aws_instance" "web" {
ami = "${var.ami}"
count = 2
source_dest_check = false
another_boolean = "true"
something_i_want_default = null
connection {
user = "root"
}
}
HEREDOC
parser = HCL::Parser.new(SRC_TEXT) # Parser object.
document = parser.parse! # Returns an HCL::AST::Document
value = document.evaluate # Returns the HCL structure as Crystal data types
string = document.to_s # Returns string reconstruction of HCL configuration
- Add support for literals (numbers, strings, booleans, null)
- Add support for blocks
- Add support for identifer parsing
- Add support for lists
- Add support for maps/objects
- Add support for function parsing, including varadic arguments
- Add support for square-bracket attribute & index access on maps & lists
- Add support for arithmetic and logic operators
- Add support for conditional expressions
- Add support for top-level attributes
- Add support for identifier/variable evaluation
- Add support for function evaluation
- Add support for heredocs
- Add standard functions
- Add support for partial- and full-schema decoding and encoding of HCL documents
- Add support for splats
- Add support for parsing interpolations/templates
- Add support for evaluating interpolations/templates
- Add support for
for
expressions - Add support for template directives
- Spec compliance
- Run against HCL2 test suite
- More validations, better parse/eval errors
- Fork it (https://github.com/maxfierke/hcl.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Licensed under The MIT License. See LICENSE for more information.
- Max Fierke - creator and maintainer