Skip to content

Commit e6978d1

Browse files
Pulling this out of preview and shipping working though hacky code
1 parent eef3ad7 commit e6978d1

15 files changed

+15291
-15103
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# I have issues
2+
3+
## I'm submitting a
4+
5+
* [ ] bug report
6+
* [ ] feature request
7+
* [ ] support request
8+
9+
## What is the current behavior
10+
11+
## If this is a bug, how to reproduce? Please include a code sample
12+
13+
## What's the expected behavior
14+
15+
## Environment
16+
17+
* Affected module version:
18+
* OS:
19+
* Terraform version:
20+
21+
## Other relevant info

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# PR o'clock
2+
3+
### Description
4+
5+
Please explain the changes you made here.
6+
7+
### Checklist
8+
9+
* [ ] The code builds correctly (npm run build:snippets produces a new and improved snippets file)
10+
* [ ] Tests for the changes have been added and passing (for bug fixes/features)
11+
* [ ] Test results are pasted in this PR (in liu of CI)
12+
* [ ] Docs have been added/updated (for bug fixes/features)
13+
* [ ] Added myself/the copyright holder to the AUTHORS file
14+
* [ ] Any breaking changes have been noted in the description

AUTHORS.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Authors
2+
3+
This is the list of contributors - maintained for credit and copyright purposes.
4+
5+
If you are submitting a change, please add your name or the name of the organization which holds the copyright to this list.
6+
7+
## Guidelines
8+
9+
* Names should be added to this file as:
10+
* Name \<email address at example.com\>
11+
* An email address is not required for organizations.
12+
* Please keep the list sorted.
13+
14+
## Contributors
15+
16+
## Humans
17+
18+
* [Brandon O'Connor](https://github.com/brandoconnor) \<brandon at atscale.run\>
19+
20+
## Organizations
21+
22+
* [Run at Scale](https://github.com/run-at-scale)

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
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-
<a name="0.0.4"></a>
6-
## [0.0.4](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.0.3...v0.0.4) (2018-04-24)
7-
5+
## [0.0.5](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.0.4...v0.0.5) (2018-04-24)
86

7+
* Source code fixed, though still very hacky in how async is controlled in the main function.
8+
* added github template extras
9+
* snippets are now in alpha order so generating docs will produce valid, ordered diffs.
10+
* cleanup works, woot!
911

10-
<a name="0.0.3"></a>
11-
12-
## [0.0.3](https://github.com/run-at-scale/terraform-doc-snippets/compare/v0.0.2...v0.0.3) (2018-04-24)
12+
## [0.0.4](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.0.3...v0.0.4) (2018-04-24)
1313

1414
* README made whole.
1515
* metadata created to round out project.
1616
* broke source code (but not snippet package) in trying to work through lock issues. Fix forthcoming.
1717

18-
<a name="0.0.2"></a>
18+
## [0.0.3](https://github.com/run-at-scale/terraform-doc-snippets/compare/v0.0.2...v0.0.3) (2018-04-24)
19+
20+
* this release never was... the maintainer is clearly still growing accustomed to the release tools in the node space.
1921

2022
## 0.0.2 (2018-04-23)
2123

2224
* sprucing up for initial release to marketplace
2325

24-
<a name="0.0.1"></a>
25-
2626
## 0.0.1 (2018-04-23)
2727

2828
* Initial release

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ A vscode extension that yanks resource and data source documentation from Terraf
1717

1818
## Known Issues
1919

20-
* Temporary files/directories are not cleaned up after building the snippets file.
2120
* Repos are pulled from master but could/should be done from latest release.
2221
* tests? What tests?
2322
* 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!

package.json

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
"name": "terraform-doc-snippets",
33
"displayName": "Terraform doc snippets",
44
"description": "Get Terraform code snippets from all providers/resources/data sources as yanked from the provider repo docs.",
5-
"version": "0.0.4",
5+
"version": "0.1.0",
66
"icon": "assets/terraform_logo.png",
77
"publisher": "run-at-scale",
88
"license": "MIT",
99
"engines": {
1010
"vscode": "^1.19.0"
1111
},
12-
"preview": true,
1312
"author": {
1413
"name": "Brandon O'Connor",
1514
"email": "brandon@atscale.run",
@@ -19,19 +18,11 @@
1918
"Snippets"
2019
],
2120
"keywords": [
22-
"vscode",
23-
"Visual studio code",
21+
"Terraform",
2422
"devops",
2523
"infrastructure as code",
26-
"terraform",
27-
"Amazon Web Services",
28-
"AWS",
29-
"GCP",
30-
"Google Cloud Platform",
31-
"Azure",
32-
"Microsoft Azure",
33-
"cloud",
34-
"automation"
24+
"automation",
25+
"orchestration"
3526
],
3627
"repository": {
3728
"type": "git",

0 commit comments

Comments
 (0)