1{
2 "output": {
3 "prefix": "tf-output",
4 "body": [
5 "output \"$1\" {",
6 " value = $2",
7 "}"
8 ]
9 },
10 "variable": {
11 "prefix": "tf-variable",
12 "body": [
13 "variable \"$1\" {",
14 " type = $2",
15 "}"
16 ]
17 },
18 "locals": {
19 "prefix": "tf-locals",
20 "body": [
21 "locals {",
22 " $1 = $2",
23 "}"
24 ]
25 }
26}