tvl-depot/users/glittershark/emacs.d/snippets/terraform-mode/variable
Griffin Smith 9b973c2011 feat(gs/emacs): Add terraform config
Change-Id: I9266ed310024a2a9437ea983dfdf27b8a395c924
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2707
Reviewed-by: glittershark <grfn@gws.fyi>
Tested-by: BuildkiteCI
2021-03-30 22:50:37 +00:00

11 lines
No EOL
158 B
Text

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