Correct terraform 'resource' snippet (#207)

Type definition was missing. As the official Terraform documentation states:

> The resource block defines a resource that exists within the infrastructure. A resource might be a physical component such as an EC2 instance, or it can be a logical resource such as a Heroku application.

From: https://www.terraform.io/intro/getting-started/build.html#configuration
This commit is contained in:
Sergey Timanin 2017-08-22 22:56:01 +02:00 committed by Andrea Crotti
parent 6ff001decd
commit 5eeac454aa
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@
# name: resource
# key: res
# --
resource "${1:name}" {
resource "${1:type}" "${2:name}" {
$0
}
}