about summary refs log tree commit diff
path: root/users/aspen/emacs.d/snippets/terraform-mode/variable
blob: 14822f1a05a8aa1ece56b973bbf68fbe27503dcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# -*- mode: snippet -*-
# name: variable
# uuid: variable
# key: var
# condition: t
# --
variable "${1:name}" {
  type = ${2:string}
  ${3:default = ${4:default}}
}
$0