-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
more module specific snippets. Mentioned snippets in the README, incl…
…udede additional screenshot.
- Loading branch information
Ben Hartshorne
committed
Mar 22, 2016
1 parent
1c8e7c3
commit 82e93eb
Showing
5 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
module "${1:name}" { | ||
source = "github.com/${2:owner}/${3:repo}?${4:ref=}" | ||
${5} | ||
} | ||
]]></content> | ||
<tabTrigger>moduleG</tabTrigger> | ||
<scope>source.terraform</scope> | ||
<description>module (github public)</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
module "${1:name}" { | ||
source = "git::ssh://[email protected]/${2:owner}/${3:repo}.git${4:?ref=}" | ||
${5} | ||
} | ||
]]></content> | ||
<tabTrigger>moduleGS</tabTrigger> | ||
<scope>source.terraform</scope> | ||
<description>module (github ssh)</description> | ||
</snippet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<snippet> | ||
<content><![CDATA[ | ||
module "${1:name}" { | ||
source = "${2:./modules/}" | ||
${3} | ||
} | ||
]]></content> | ||
<tabTrigger>moduleP</tabTrigger> | ||
<scope>source.terraform</scope> | ||
<description>module (path)</description> | ||
</snippet> |