Skip to content

Commit 9a9a7b4

Browse files
Merge pull request #2 from run-at-scale/feature/add_overrides
Feature/add overrides
2 parents 198cdca + 628f2b2 commit 9a9a7b4

File tree

11 files changed

+1467
-153
lines changed

11 files changed

+1467
-153
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## Future
6+
7+
* tests added
8+
* types added
9+
* placeholders for tabbing through snippet names added to each snippet
10+
11+
## [0.2.0](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.5...v0.2.0) (2018-05-10)
12+
13+
* override and extra snippets now added through config
14+
* deprecated resources and data sources manually added for their successor
15+
* snippets file rebuilt and now has 1491 pulled from docs + a few custom snippets
16+
517
## [0.1.5](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.4...v0.1.5) (2018-05-04)
618

719
* gif (🔊 Jiff 🔊) demo added to readme
@@ -19,7 +31,7 @@ All notable changes to this project will be documented in this file. See [standa
1931

2032
## [0.1.2](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.1...v0.1.2) (2018-04-26)
2133

22-
* markdown files are sometimes supplied as `.md` and othertimes `.markdown`. The code now handles both.
34+
* markdown files are sometimes supplied as `.md` and other times `.markdown`. The code now handles both.
2335

2436
## [0.1.1](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.0.4...v0.1.1) (2018-04-26)
2537

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
![Terraform](https://github.com/run-at-scale/vscode-terraform-doc-snippets/raw/master/assets/terraform_logo.png "Terraform doc snippets")
88

9-
A vscode extension that yanks resource and data source documentation from Terraform provider repos and transforms them into structured vscode snippets - 1452 snippets in total!
9+
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!
1010

1111
## Demo
1212

@@ -27,16 +27,11 @@ excellent context which is important for understanding how infrastructure primit
2727
* All snippets are delivered as a precompiled bundle - no dynamic lookups so your editor stays speedy.
2828
* Resource and data source name collisions avoided by including `data` or `resource` in each snippet prefix.
2929
* All providers listed in the terraform-providers organization are covered.
30-
31-
## Features (to come)
32-
3330
* Ability to override or add additional snippets through configuration.
3431

3532
## Known Issues
3633

37-
* Repos are pulled from master but could/should be done from latest release.
38-
* tests? What tests?
39-
* 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!
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.
4035

4136
## Contributing
4237

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "terraform-doc-snippets",
33
"displayName": "Terraform doc snippets",
4-
"description": "Terraform code snippets (>1400) straight from documentation for all provider resources and data sources. All providers in the terraform-providers org covered.",
5-
"version": "0.1.5",
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",
67
"icon": "assets/terraform_logo.png",
78
"publisher": "run-at-scale",
89
"license": "MIT",
@@ -14,9 +15,7 @@
1415
"email": "brandon@atscale.run",
1516
"url": "https://github.com/run-at-scale"
1617
},
17-
"categories": [
18-
"Snippets"
19-
],
18+
"categories": ["Snippets"],
2019
"keywords": [
2120
"Terraform",
2221
"devops",

0 commit comments

Comments
 (0)