fix(terraform): remove duplicate resource snippet (#432)

Remove duplicated key `resource` in terraform snippet. The one introduced in #426 remains as it has better readability.
This commit is contained in:
Lê Hiếu 2024-04-29 08:13:33 +07:00 committed by GitHub
parent d595a2e780
commit 9e55019b64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,11 +141,6 @@
"description": "Outputs are a way to tell Terraform what data is important.",
"body": ["output \"${myOutput}\" {", " value = \"\"", "}"]
},
"resource": {
"prefix": "tf-resource",
"description": "define a provisioner.",
"body": ["resource \"${1}\" \"${2}\" {", "\t${3}", "}"]
},
"depends_on": {
"prefix": "tf-depends_on",
"description": "Define explicit dependencies.",