aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/hashicorp/hcl/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/hashicorp/hcl/README.md')
-rw-r--r--vendor/github.com/hashicorp/hcl/README.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/hashicorp/hcl/README.md b/vendor/github.com/hashicorp/hcl/README.md
index e292d59..c822332 100644
--- a/vendor/github.com/hashicorp/hcl/README.md
+++ b/vendor/github.com/hashicorp/hcl/README.md
@@ -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