You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 31, 2023. It is now read-only.
/// Path to issuer seed key. If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
111
-
#[structopt(short = "i", long = "issuer")]
110
+
/// Path to issuer seed key (account). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
111
+
#[structopt(
112
+
short = "i",
113
+
long = "issuer",
114
+
env = "WASH_ISSUER_KEY",
115
+
hide_env_values = true
116
+
)]
112
117
issuer:Option<String>,
113
118
114
-
/// Path to subject seed key. If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
115
-
#[structopt(short = "u", long = "subject")]
119
+
/// Path to subject seed key (service). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
120
+
#[structopt(
121
+
short = "s",
122
+
long = "subject",
123
+
env = "WASH_SUBJECT_KEY",
124
+
hide_env_values = true
125
+
)]
116
126
subject:Option<String>,
117
127
118
128
/// Location of key files for signing. Defaults to $WASH_KEYS ($HOME/.wash/keys)
@@ -192,12 +202,22 @@ struct ProviderMetadata {
192
202
#[structopt(short = "e", long = "version")]
193
203
version:Option<String>,
194
204
195
-
/// Seed path for the issuer
196
-
#[structopt(short = "i", long = "issuer")]
205
+
/// Path to issuer seed key (account). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
206
+
#[structopt(
207
+
short = "i",
208
+
long = "issuer",
209
+
env = "WASH_ISSUER_KEY",
210
+
hide_env_values = true
211
+
)]
197
212
issuer:String,
198
213
199
-
/// Seed path for the subject
200
-
#[structopt(short = "s", long = "subject")]
214
+
/// Path to subject seed key (service). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
215
+
#[structopt(
216
+
short = "s",
217
+
long = "subject",
218
+
env = "WASH_SUBJECT_KEY",
219
+
hide_env_values = true
220
+
)]
201
221
subject:String,
202
222
203
223
/// Indicates the token expires in the given amount of days. If this option is left off, the token will never expire
Copy file name to clipboardexpand all lines: src/par.rs
+27-7
Original file line number
Diff line number
Diff line change
@@ -61,12 +61,22 @@ struct CreateCommand {
61
61
)]
62
62
directory:Option<String>,
63
63
64
-
/// Path to issuer seed key (account) If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
65
-
#[structopt(short = "i", long = "issuer")]
64
+
/// Path to issuer seed key (account). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
65
+
#[structopt(
66
+
short = "i",
67
+
long = "issuer",
68
+
env = "WASH_ISSUER_KEY",
69
+
hide_env_values = true
70
+
)]
66
71
issuer:Option<String>,
67
72
68
-
/// Path to subject seed key (service) If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
69
-
#[structopt(short = "s", long = "subject")]
73
+
/// Path to subject seed key (service). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
74
+
#[structopt(
75
+
short = "s",
76
+
long = "subject",
77
+
env = "WASH_SUBJECT_KEY",
78
+
hide_env_values = true
79
+
)]
70
80
subject:Option<String>,
71
81
72
82
/// Name of the capability provider
@@ -124,12 +134,22 @@ struct InsertCommand {
124
134
)]
125
135
directory:Option<String>,
126
136
127
-
/// Path to issuer seed key (account.) If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
128
-
#[structopt(short = "i", long = "issuer")]
137
+
/// Path to issuer seed key (account). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
138
+
#[structopt(
139
+
short = "i",
140
+
long = "issuer",
141
+
env = "WASH_ISSUER_KEY",
142
+
hide_env_values = true
143
+
)]
129
144
issuer:Option<String>,
130
145
131
146
/// Path to subject seed key (service). If this flag is not provided, the will be sourced from $WASH_KEYS ($HOME/.wash/keys) or generated for you if it cannot be found.
0 commit comments