Skip to content

Commit

Permalink
Merge pull request #42 from notnmeyer/update-variable-snippets-for-tf…
Browse files Browse the repository at this point in the history
…-0.12

remove quotes around variable type in snippets
  • Loading branch information
radeksimko committed Jul 9, 2020
2 parents 64208ea + d476ec0 commit 54d8350
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion snippets/variable_empty.sublime-snippet
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "string"
type = string
${2:description = "${3:describe your variable}"}
}
]]></content>
Expand Down
2 changes: 1 addition & 1 deletion snippets/variable_map.sublime-snippet
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "map"
type = map
${2:description = "${3:describe your variable}"}
default = {
${4:key1} = "${5:val1}"
Expand Down
2 changes: 1 addition & 1 deletion snippets/variable_string.sublime-snippet
@@ -1,7 +1,7 @@
<snippet>
<content><![CDATA[
variable "${1:name}" {
type = "string"
type = string
${2:description = "${3:describe your variable}"}
default = "${4:default_value}"
}
Expand Down

0 comments on commit 54d8350

Please sign in to comment.