Commit d6f8ec93 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #2230 from mitchellh/f-json-comments

template: allow _ prefix to root level keys for comments [GH-2066]
parents 3ea324d3 facbb657
......@@ -292,11 +292,16 @@ func Parse(r io.Reader) (*Template, error) {
if len(md.Unused) > 0 {
sort.Strings(md.Unused)
for _, unused := range md.Unused {
// Ignore keys starting with '_' as comments
if unused[0] == '_' {
continue
}
err = multierror.Append(err, fmt.Errorf(
"Unknown root level key in template: '%s'", unused))
}
// Return early for these errors
}
if err != nil {
return nil, err
}
......
......@@ -304,6 +304,19 @@ func TestParse(t *testing.T) {
},
false,
},
{
"parse-comment.json",
&Template{
Builders: map[string]*Builder{
"something": &Builder{
Name: "something",
Type: "something",
},
},
},
false,
},
}
for _, tc := range cases {
......
{
"_info": "foo",
"builders": [{"type": "something"}]
}
......@@ -58,6 +58,22 @@ Along with each key, it is noted whether it is required or not.
For more information on how to define and use user variables, read the
sub-section on [user variables in templates](/docs/templates/user-variables.html).
## Comments
JSON doesn't support comments and Packer reports unknown keys as validation
errors. If you'd like to comment your template, you can prefix a _root level_
key with an underscore. Example:
```javascript
{
"_comment": "This is a comment",
"builders": [{}]
}
```
**Important:** Only _root level_ keys can be underscore prefixed. Keys within
builders, provisioners, etc. will still result in validation errors.
## Example Template
Below is an example of a basic template that is nearly fully functional. It is just
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment