envilder 0.7.0 β†’ 0.7.3

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/ROADMAP.md CHANGED
@@ -1,67 +1,40 @@
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
- - πŸ“Έ **Demo GIF/video** showing the tool in action (terminal + env + app)
14
-
15
- ---
16
-
17
- ## 🚧 Planned Improvements
18
-
19
- ### πŸ”Ή Usability & Visibility
20
-
21
- - [ ] πŸ” **Auto-discovery mode** (`--auto`) for fetching all parameters with a given prefix
22
- - [ ] ✍️ **Tutorial repo** showing full example with GitHub Actions
23
- - [x] πŸ›οΈ **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
- - [ ] ↩️ **Push mode** (`--push`) 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.
51
-
52
- ---
53
-
54
- ## Feature Status
55
-
56
- | Feature | Status | Notes |
57
- |--------------------------------|---------------|-------|
58
- | Push mode (`--push`) | βœ… Implemented | |
59
- | Mapping-based secret resolution| βœ… Implemented | |
60
- | .env file generation | βœ… Implemented | |
61
- | AWS profile support | βœ… Implemented | |
62
- | GitHub Action | βœ… Implemented | Available as composite action |
63
- | Auto-discovery mode (`--auto`) | ❌ Not implemented | Planned |
64
- | Check/sync mode (`--check`) | ❌ Not implemented | Planned |
65
- | Webhook/Slack notification | ❌ Not implemented | Planned |
66
- | Hierarchical mapping | ❌ Not implemented | Only flat JSON mapping supported |
67
- | Plugin system | ❌ Not implemented | Only AWS SSM supported |
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
+ > **Note:** This roadmap contains ideas and potential features based on initial vision and community feedback.
7
+ > Not all features are guaranteed to be implemented. Priorities may change based on user needs, feedback,
8
+ > and real-world usage patterns. Your input mattersβ€”feel free to share your thoughts and suggestions!
9
+
10
+ ---
11
+
12
+ ## Feature Status & Roadmap
13
+
14
+ | Feature | Status | Priority | Notes |
15
+ |---------|--------|----------|-------|
16
+ | **Mapping-based resolution** | βœ… Implemented | - | Core functionality |
17
+ | **`.env` file generation** | βœ… Implemented | - | Core functionality |
18
+ | **AWS profile support** | βœ… Implemented | - | `--profile` flag |
19
+ | **Push mode** (`--push`) | βœ… Implemented | - | [Guide](./docs/push-command.md) |
20
+ | **GitHub Action** | βœ… Implemented | - | [Documentation](./github-action/README.md) |
21
+ | **Onboarding documentation** | βœ… Implemented | - | [Setup guide](./docs/requirements-installation.md) |
22
+ | **Plugin system / Multi-backend** | ❌ Planned | πŸ”₯ Next | Starting with Azure Key Vault support |
23
+ | **Check/sync mode** (`--check`) | ❌ Planned | High | Validate SSM vs `.env`, fail CI if out-of-sync |
24
+ | **Auto-discovery mode** (`--auto`) | ❌ Planned | Medium | Fetch all parameters with a given prefix |
25
+ | **Webhook/Slack notifications** | ❌ Planned | Low | Notify on secret sync for audit/logging |
26
+ | **Hierarchical mapping** | ❌ Future | Low | Per-environment `param-map.json` |
27
+ | **Web-based demo** | ❌ Future | Low | Interactive mapping tester |
28
+
29
+ ---
30
+
31
+ ## πŸ™Œ Contribute or Suggest Ideas
32
+
33
+ If you've faced similar problems or want to help improve this tool, feel free to:
34
+
35
+ - πŸ› [Open an issue](https://github.com/macalbert/envilder/issues/new)
36
+ - πŸ’‘ Share feature ideas and use cases
37
+ - πŸ”§ Submit a Pull Request
38
+ - πŸ’¬ Provide feedback on planned features
39
+
40
+ Every bit of feedback helps make this tool better for the community!