You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A vscode extension that yanks resource and data source documentation from Terraform provider repos and transforms them into structured vscode snippets - ~1500 snippets in total!
9
+
A vscode extension that yanks resource and data source documentation from Terraform provider repos and transforms them into structured VS Code snippets. Over 1600 snippets in total.
10
10
11
11
## Demo
12
12
@@ -23,15 +23,15 @@ excellent context which is important for understanding how infrastructure primit
23
23
24
24
## Features
25
25
26
-
* All resources and data source snippets gathered from documentation. As docs improve, so do the snippets.
27
-
* All snippets are delivered as a precompiled bundle - no dynamic lookups so your editor stays speedy.
28
-
* Resource and data source name collisions avoided by including `data` or `resource` in each snippet prefix.
29
-
* All providers listed in the terraform-providers organization are covered.
30
-
* Ability to override or add additional snippets through configuration.
26
+
- All resources and data source snippets gathered from documentation. As docs improve, so do the snippets.
27
+
- All snippets are delivered as a pre-compiled bundle - no dynamic lookups so your editor stays speedy.
28
+
- Resource and data source name collisions avoided by including `data` or `resource` in each snippet prefix.
29
+
- All providers listed in the terraform-providers organization are covered.
30
+
- Ability to override or add additional snippets through configuration.
31
31
32
32
## Known Issues
33
33
34
-
* Issue #1 is probably that this is my first node project and I'm not to be trusted with the language. Help and review wanted! Tests needed.
34
+
- Issue #1 is probably that this is my first node project and I'm not to be trusted with the language. Help and review wanted! Tests needed.
Copy file name to clipboardExpand all lines: package.json
+5-4Lines changed: 5 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,8 @@
1
1
{
2
2
"name": "terraform-doc-snippets",
3
3
"displayName": "Terraform doc snippets",
4
-
"description":
5
-
"Terraform code snippets (~1500) straight from documentation for all provider resources and data sources. All providers in the terraform-providers org covered.",
6
-
"version": "0.2.0",
4
+
"description": "Terraform code snippets (>1600) straight from documentation for all provider resources and data sources. All providers in the terraform-providers org covered.",
0 commit comments