envilder 0.3.3 โ 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/ROADMAP.md +50 -0
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<h1 align="center">
|
|
2
2
|
<br>
|
|
3
|
-
<img src="https://github.com/user-attachments/assets/96bf1efa-7d21-440a-a414-3a20e7f9a1f1" alt="Envilder"
|
|
3
|
+
<img src="https://github.com/user-attachments/assets/96bf1efa-7d21-440a-a414-3a20e7f9a1f1" alt="Envilder">
|
|
4
4
|
<br>
|
|
5
5
|
Envilder
|
|
6
6
|
<br>
|
package/ROADMAP.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# ๐ฃ๏ธ Envilder Roadmap
|
|
2
|
+
|
|
3
|
+
Envilder aims to be the simplest, most reliable way to generate `.env` files from AWS SSM Parameter Store
|
|
4
|
+
โ for both local development and CI/CD pipelines.
|
|
5
|
+
|
|
6
|
+
## โ
Current Features
|
|
7
|
+
|
|
8
|
+
- Map-based secret resolution via `param-map.json`
|
|
9
|
+
- Outputs clean `.env` files
|
|
10
|
+
- Supports AWS profiles (`AWS_PROFILE`)
|
|
11
|
+
- Compatible with SecureString and plain parameters
|
|
12
|
+
- CLI-first, lightweight
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## ๐ง Planned Improvements
|
|
17
|
+
|
|
18
|
+
### ๐น Usability & Visibility
|
|
19
|
+
|
|
20
|
+
- [ ] ๐ **Auto-discovery mode** (`--auto`) for fetching all parameters with a given prefix
|
|
21
|
+
- [ ] ๐ธ **Demo GIF/video** showing the tool in action (terminal + env + app)
|
|
22
|
+
- [ ] โ๏ธ **Tutorial repo** showing full example with GitHub Actions
|
|
23
|
+
- [ ] ๐๏ธ **Official GitHub Action** (in Marketplace)
|
|
24
|
+
|
|
25
|
+
### ๐น Dev Experience & Adoption
|
|
26
|
+
|
|
27
|
+
- [ ] โ
**Check mode** (`--check`) to validate SSM vs existing `.env` and fail CI if out-of-sync
|
|
28
|
+
- [ ] ๐ **Onboarding doc** for new teams (how to set up param-map, profiles, best practices)
|
|
29
|
+
|
|
30
|
+
### ๐น Advanced Features
|
|
31
|
+
|
|
32
|
+
- [ ] โฉ๏ธ **Import mode** (`--import`) to push local `.env` back to AWS SSM
|
|
33
|
+
- [ ] ๐ **Optional webhook/Slack notifier** on secret sync (for audit/logging)
|
|
34
|
+
- [ ] ๐ **Web-based interactive demo** (optional) to test mappings live
|
|
35
|
+
- [ ] ๐ง **Awesome list submissions** and community templates
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## ๐งช Long-term Ideas (Open to Feedback)
|
|
40
|
+
|
|
41
|
+
- [ ] ๐ Support hierarchical `param-map.json` per environment
|
|
42
|
+
- [ ] ๐งฌ Plugin system for custom resolvers (e.g. secrets from other providers)
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## ๐ Contribute or suggest ideas
|
|
47
|
+
|
|
48
|
+
If youโve faced similar problems or want to help improve this tool, feel free to open an issue, submit a PR
|
|
49
|
+
or reach out.
|
|
50
|
+
Every bit of feedback helps make this tool better for the community.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envilder",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "A CLI tool to generate .env files from AWS SSM parameters",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -42,6 +42,8 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@aws-sdk/client-ssm": "^3.806.0",
|
|
44
44
|
"@aws-sdk/credential-providers": "^3.806.0",
|
|
45
|
+
"@secretlint/core": "^9.2.1",
|
|
46
|
+
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
|
|
45
47
|
"@types/node": "^22.5.5",
|
|
46
48
|
"commander": "^13.1.0",
|
|
47
49
|
"dotenv": "^16.4.5",
|
|
@@ -49,14 +51,17 @@
|
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
53
|
"@biomejs/biome": "^1.9.1",
|
|
52
|
-
"@secretlint/secretlint-rule-preset-recommend": "^9.3.2",
|
|
53
54
|
"@vitest/coverage-v8": "^3.1.1",
|
|
54
55
|
"rimraf": "^6.0.1",
|
|
55
|
-
"secretlint": "^9.
|
|
56
|
+
"secretlint": "^9.0.0",
|
|
56
57
|
"ts-node": "^10.9.2",
|
|
57
58
|
"typescript": "^5.6.2",
|
|
58
59
|
"vitest": "^3.1.1"
|
|
59
60
|
},
|
|
61
|
+
"resolutions": {
|
|
62
|
+
"string-width": "4.2.3",
|
|
63
|
+
"strip-ansi": "6.0.1"
|
|
64
|
+
},
|
|
60
65
|
"engines": {
|
|
61
66
|
"node": ">=20.0.0",
|
|
62
67
|
"yarn": ">=1.22"
|