tvl-depot/users/grfn/emacs.d/snippets/terraform-mode/variable

11 lines
158 B
Text
Raw Normal View History

# -*- mode: snippet -*-
# name: variable
# uuid:
# key: var
# condition: t
# --
variable "${1:name}" {
type = ${2:string}
${3:default = ${4:default}}
}
$0