github.com/hashicorp/hcl v1.0.0

This commit is contained in:
Jordan Liggitt
2019-06-22 11:44:03 -07:00
parent 63e5ad08aa
commit 855048b1b3
32 changed files with 514 additions and 152 deletions

View File

@@ -103,6 +103,16 @@ variable "ami" {
description = "the AMI to use"
}
```
This would be equivalent to the following json:
``` json
{
"variable": {
"ami": {
"description": "the AMI to use"
}
}
}
```
## Thanks