envpkt 0.4.2 → 0.6.0
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 +14 -14
- package/dist/cli.js +247 -81
- package/dist/index.d.ts +55 -7
- package/dist/index.js +185 -68
- package/package.json +3 -2
- package/schemas/envpkt.schema.json +11 -11
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
"description": "Path to shared secret catalog (relative to this config file)",
|
|
18
18
|
"type": "string"
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"description": "Identity and capabilities of the
|
|
20
|
+
"identity": {
|
|
21
|
+
"description": "Identity and capabilities of the principal using this envpkt",
|
|
22
22
|
"type": "object",
|
|
23
23
|
"required": [
|
|
24
24
|
"name"
|
|
25
25
|
],
|
|
26
26
|
"properties": {
|
|
27
27
|
"name": {
|
|
28
|
-
"description": "
|
|
28
|
+
"description": "Display name",
|
|
29
29
|
"type": "string"
|
|
30
30
|
},
|
|
31
31
|
"consumer": {
|
|
@@ -50,11 +50,11 @@
|
|
|
50
50
|
]
|
|
51
51
|
},
|
|
52
52
|
"description": {
|
|
53
|
-
"description": "
|
|
53
|
+
"description": "Description or role",
|
|
54
54
|
"type": "string"
|
|
55
55
|
},
|
|
56
56
|
"capabilities": {
|
|
57
|
-
"description": "List of capabilities this
|
|
57
|
+
"description": "List of capabilities this identity provides",
|
|
58
58
|
"type": "array",
|
|
59
59
|
"items": {
|
|
60
60
|
"type": "string"
|
|
@@ -62,26 +62,26 @@
|
|
|
62
62
|
},
|
|
63
63
|
"expires": {
|
|
64
64
|
"format": "date",
|
|
65
|
-
"description": "
|
|
65
|
+
"description": "Credential expiration date (YYYY-MM-DD)",
|
|
66
66
|
"type": "string"
|
|
67
67
|
},
|
|
68
68
|
"services": {
|
|
69
|
-
"description": "Service dependencies
|
|
69
|
+
"description": "Service dependencies",
|
|
70
70
|
"type": "array",
|
|
71
71
|
"items": {
|
|
72
72
|
"type": "string"
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
|
-
"
|
|
76
|
-
"description": "Path to
|
|
75
|
+
"key_file": {
|
|
76
|
+
"description": "Path to age identity file (relative to config directory)",
|
|
77
77
|
"type": "string"
|
|
78
78
|
},
|
|
79
79
|
"recipient": {
|
|
80
|
-
"description": "
|
|
80
|
+
"description": "Age public key for encryption",
|
|
81
81
|
"type": "string"
|
|
82
82
|
},
|
|
83
83
|
"secrets": {
|
|
84
|
-
"description": "Secret keys
|
|
84
|
+
"description": "Secret keys needed from the catalog",
|
|
85
85
|
"type": "array",
|
|
86
86
|
"items": {
|
|
87
87
|
"type": "string"
|