2017-09-11 23:56:31 +00:00
|
|
|
// Package hclwrite deals with the problem of generating HCL configuration
|
|
|
|
// and of making specific surgical changes to existing HCL configurations.
|
2017-05-29 23:05:34 +00:00
|
|
|
//
|
2017-09-11 23:56:31 +00:00
|
|
|
// It operates at a different level of abstraction than the main HCL parser
|
2017-05-29 23:05:34 +00:00
|
|
|
// and AST, since details such as the placement of comments and newlines
|
|
|
|
// are preserved when unchanged.
|
2018-11-03 15:43:10 +00:00
|
|
|
//
|
|
|
|
// The hclwrite API follows a similar principle to XML/HTML DOM, allowing nodes
|
|
|
|
// to be read out, created and inserted, etc. Nodes represent syntax constructs
|
|
|
|
// rather than semantic concepts.
|
2017-09-11 23:00:31 +00:00
|
|
|
package hclwrite
|