envilder 0.6.0 → 0.6.1

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.
Files changed (2) hide show
  1. package/README.md +20 -11
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -149,11 +149,14 @@ Watch how Envilder works in less than 1 minute:
149
149
 
150
150
  ```mermaid
151
151
  graph LR
152
- A[Mapping File (param-map.json)] --> B[Envilder]
153
- C[.env File or --key] --> B
154
- D[AWS Credentials] --> B
155
- E[AWS SSM] --> B
156
- B --> F[Pull/Push Secrets 💾]
152
+ A["Mapping File<br/>(param-map.json)"] --> B[Envilder]:::core
153
+ C["Environment File<br/> '.env' or --key"] --> B
154
+ D["AWS Credentials"]:::aws --> B
155
+ E["AWS SSM"]:::aws --> B
156
+ B --> F["Pull/Push Secrets 💾"]
157
+
158
+ classDef aws fill:#ffcc66,color:#000000,stroke:#333,stroke-width:1.5px;
159
+ classDef core fill:#1f3b57,color:#fff,stroke:#ccc,stroke-width:2px;
157
160
  ```
158
161
 
159
162
  1. Define mappings in JSON: `{"ENV_VAR": "ssm/path"}`
@@ -186,10 +189,13 @@ Push Mode uploads environment variables to AWS SSM Parameter Store. It has two d
186
189
 
187
190
  ```mermaid
188
191
  graph LR
189
- A[.env File] --> |Variables & Values| B[Envilder]
192
+ A[.env File] --> |Variables & Values| B[Envilder]:::core
190
193
  C[Mapping File] --> |SSM Paths| B
191
- D[AWS Profile] --> B
192
- B --> E[AWS SSM Parameter Store]
194
+ D[AWS Profile]:::aws --> B
195
+ B --> E[AWS SSM Parameter Store]:::aws
196
+
197
+ classDef aws fill:#ffcc66,color:#000000,stroke:#333,stroke-width:1.5px;
198
+ classDef core fill:#1f3b57,color:#fff,stroke:#ccc,stroke-width:2px;
193
199
  ```
194
200
 
195
201
  **Example:**
@@ -240,9 +246,12 @@ Uploads a single environment variable directly to AWS SSM Parameter Store withou
240
246
 
241
247
  ```mermaid
242
248
  graph LR
243
- A[Command Line Arguments] --> B[Envilder]
244
- C[AWS Profile] --> B
245
- B --> D[AWS SSM Parameter Store]
249
+ A[Command Line Arguments] --> B[Envilder]:::core
250
+ C[AWS Profile]:::aws --> B
251
+ B --> D[AWS SSM Parameter Store]:::aws
252
+
253
+ classDef aws fill:#ffcc66,color:#000000,stroke:#333,stroke-width:1.5px;
254
+ classDef core fill:#1f3b57,color:#fff,stroke:#ccc,stroke-width:2px;
246
255
  ```
247
256
 
248
257
  **Example:**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "envilder",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth",
5
5
  "main": "./lib/apps/cli/Cli.js",
6
6
  "bin": {