about summary refs log tree commit diff
path: root/users/aspen/emacs.d/snippets/terraform-mode/variable
# -*- mode: snippet -*-
# name: variable
# uuid: variable
# key: var
# condition: t
# --
variable "${1:name}" {
  type = ${2:string}
  ${3:default = ${4:default}}
}
$0