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
This commit is contained in:
Griffin Smith 2021-03-30 16:34:19 -04:00 committed by glittershark
parent 6749267805
commit 9b973c2011
3 changed files with 36 additions and 0 deletions

View file

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