@pulumi/vault 7.2.0-alpha.1755297899 → 7.2.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/aws/secretBackend.d.ts +173 -21
- package/aws/secretBackend.js +26 -0
- package/aws/secretBackend.js.map +1 -1
- package/azure/backend.d.ts +209 -6
- package/azure/backend.js +34 -0
- package/azure/backend.js.map +1 -1
- package/consul/secretBackend.d.ts +179 -12
- package/consul/secretBackend.js +28 -0
- package/consul/secretBackend.js.map +1 -1
- package/database/secretsMount.d.ts +12 -0
- package/database/secretsMount.js +2 -0
- package/database/secretsMount.js.map +1 -1
- package/gcp/secretBackend.d.ts +165 -24
- package/gcp/secretBackend.js +24 -0
- package/gcp/secretBackend.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +12 -2
- package/index.js.map +1 -1
- package/jwt/authBackend.d.ts +18 -0
- package/jwt/authBackend.js +2 -0
- package/jwt/authBackend.js.map +1 -1
- package/kmip/secretBackend.d.ts +209 -3
- package/kmip/secretBackend.js +34 -0
- package/kmip/secretBackend.js.map +1 -1
- package/kubernetes/secretBackend.d.ts +12 -0
- package/kubernetes/secretBackend.js +2 -0
- package/kubernetes/secretBackend.js.map +1 -1
- package/ldap/secretBackend.d.ts +24 -15
- package/ldap/secretBackend.js +2 -0
- package/ldap/secretBackend.js.map +1 -1
- package/mount.d.ts +12 -0
- package/mount.js +2 -0
- package/mount.js.map +1 -1
- package/nomadSecretBackend.d.ts +179 -9
- package/nomadSecretBackend.js +28 -0
- package/nomadSecretBackend.js.map +1 -1
- package/ociAuthBackend.d.ts +205 -0
- package/ociAuthBackend.js +95 -0
- package/ociAuthBackend.js.map +1 -0
- package/ociAuthBackendRole.d.ts +237 -0
- package/ociAuthBackendRole.js +109 -0
- package/ociAuthBackendRole.js.map +1 -0
- package/package.json +2 -2
- package/pkisecret/backendConfigScep.d.ts +21 -9
- package/pkisecret/backendConfigScep.js +2 -0
- package/pkisecret/backendConfigScep.js.map +1 -1
- package/pkisecret/getBackendConfigScep.d.ts +12 -0
- package/pkisecret/getBackendConfigScep.js +2 -0
- package/pkisecret/getBackendConfigScep.js.map +1 -1
- package/rabbitmq/secretBackend.d.ts +191 -15
- package/rabbitmq/secretBackend.js +30 -0
- package/rabbitmq/secretBackend.js.map +1 -1
- package/ssh/secretBackendCa.d.ts +27 -3
- package/ssh/secretBackendCa.js +4 -0
- package/ssh/secretBackendCa.js.map +1 -1
- package/terraformcloud/secretBackend.d.ts +191 -12
- package/terraformcloud/secretBackend.js +30 -0
- package/terraformcloud/secretBackend.js.map +1 -1
- package/transit/secretBackendKey.d.ts +21 -9
- package/transit/secretBackendKey.js.map +1 -1
- package/types/input.d.ts +43 -0
- package/types/output.d.ts +43 -0
package/azure/backend.d.ts
CHANGED
|
@@ -51,6 +51,26 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
51
51
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
52
52
|
*/
|
|
53
53
|
static isInstance(obj: any): obj is Backend;
|
|
54
|
+
/**
|
|
55
|
+
* Accessor of the mount
|
|
56
|
+
*/
|
|
57
|
+
readonly accessor: pulumi.Output<string>;
|
|
58
|
+
/**
|
|
59
|
+
* List of managed key registry entry names that the mount in question is allowed to access
|
|
60
|
+
*/
|
|
61
|
+
readonly allowedManagedKeys: pulumi.Output<string[] | undefined>;
|
|
62
|
+
/**
|
|
63
|
+
* List of headers to allow and pass from the request to the plugin
|
|
64
|
+
*/
|
|
65
|
+
readonly allowedResponseHeaders: pulumi.Output<string[] | undefined>;
|
|
66
|
+
/**
|
|
67
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
|
|
68
|
+
*/
|
|
69
|
+
readonly auditNonHmacRequestKeys: pulumi.Output<string[]>;
|
|
70
|
+
/**
|
|
71
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
|
|
72
|
+
*/
|
|
73
|
+
readonly auditNonHmacResponseKeys: pulumi.Output<string[]>;
|
|
54
74
|
/**
|
|
55
75
|
* The OAuth2 client id to connect to Azure.
|
|
56
76
|
*/
|
|
@@ -59,6 +79,14 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
59
79
|
* The OAuth2 client secret to connect to Azure.
|
|
60
80
|
*/
|
|
61
81
|
readonly clientSecret: pulumi.Output<string | undefined>;
|
|
82
|
+
/**
|
|
83
|
+
* Default lease duration for tokens and secrets in seconds
|
|
84
|
+
*/
|
|
85
|
+
readonly defaultLeaseTtlSeconds: pulumi.Output<number>;
|
|
86
|
+
/**
|
|
87
|
+
* List of headers to allow and pass from the request to the plugin
|
|
88
|
+
*/
|
|
89
|
+
readonly delegatedAuthAccessors: pulumi.Output<string[] | undefined>;
|
|
62
90
|
/**
|
|
63
91
|
* Human-friendly description of the mount for the backend.
|
|
64
92
|
*/
|
|
@@ -77,14 +105,21 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
77
105
|
* The Azure environment.
|
|
78
106
|
*/
|
|
79
107
|
readonly environment: pulumi.Output<string | undefined>;
|
|
108
|
+
/**
|
|
109
|
+
* Enable the secrets engine to access Vault's external entropy source
|
|
110
|
+
*/
|
|
111
|
+
readonly externalEntropyAccess: pulumi.Output<boolean | undefined>;
|
|
112
|
+
/**
|
|
113
|
+
* If set to true, disables caching.
|
|
114
|
+
*/
|
|
115
|
+
readonly forceNoCache: pulumi.Output<boolean>;
|
|
80
116
|
/**
|
|
81
117
|
* The audience claim value. Requires Vault 1.17+.
|
|
82
118
|
* *Available only for Vault Enterprise*
|
|
83
119
|
*/
|
|
84
120
|
readonly identityTokenAudience: pulumi.Output<string | undefined>;
|
|
85
121
|
/**
|
|
86
|
-
* The key to use for signing identity tokens.
|
|
87
|
-
* *Available only for Vault Enterprise*
|
|
122
|
+
* The key to use for signing identity tokens.
|
|
88
123
|
*/
|
|
89
124
|
readonly identityTokenKey: pulumi.Output<string | undefined>;
|
|
90
125
|
/**
|
|
@@ -92,6 +127,18 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
92
127
|
* *Available only for Vault Enterprise*
|
|
93
128
|
*/
|
|
94
129
|
readonly identityTokenTtl: pulumi.Output<number>;
|
|
130
|
+
/**
|
|
131
|
+
* Specifies whether to show this mount in the UI-specific listing endpoint
|
|
132
|
+
*/
|
|
133
|
+
readonly listingVisibility: pulumi.Output<string | undefined>;
|
|
134
|
+
/**
|
|
135
|
+
* Local mount flag that can be explicitly set to true to enforce local mount in HA environment
|
|
136
|
+
*/
|
|
137
|
+
readonly local: pulumi.Output<boolean | undefined>;
|
|
138
|
+
/**
|
|
139
|
+
* Maximum possible lease duration for tokens and secrets in seconds
|
|
140
|
+
*/
|
|
141
|
+
readonly maxLeaseTtlSeconds: pulumi.Output<number>;
|
|
95
142
|
/**
|
|
96
143
|
* The namespace to provision the resource in.
|
|
97
144
|
* The value should not contain leading or trailing forward slashes.
|
|
@@ -99,10 +146,28 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
99
146
|
* *Available only for Vault Enterprise*.
|
|
100
147
|
*/
|
|
101
148
|
readonly namespace: pulumi.Output<string | undefined>;
|
|
149
|
+
/**
|
|
150
|
+
* Specifies mount type specific options that are passed to the backend
|
|
151
|
+
*/
|
|
152
|
+
readonly options: pulumi.Output<{
|
|
153
|
+
[key: string]: string;
|
|
154
|
+
} | undefined>;
|
|
155
|
+
/**
|
|
156
|
+
* List of headers to allow and pass from the request to the plugin
|
|
157
|
+
*/
|
|
158
|
+
readonly passthroughRequestHeaders: pulumi.Output<string[] | undefined>;
|
|
102
159
|
/**
|
|
103
160
|
* The unique path this backend should be mounted at. Defaults to `azure`.
|
|
104
161
|
*/
|
|
105
162
|
readonly path: pulumi.Output<string | undefined>;
|
|
163
|
+
/**
|
|
164
|
+
* Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
|
|
165
|
+
*/
|
|
166
|
+
readonly pluginVersion: pulumi.Output<string | undefined>;
|
|
167
|
+
/**
|
|
168
|
+
* The TTL in seconds of the root password in Azure when rotate-root generates a new client secret
|
|
169
|
+
*/
|
|
170
|
+
readonly rootPasswordTtl: pulumi.Output<number>;
|
|
106
171
|
/**
|
|
107
172
|
* The amount of time in seconds Vault should wait before rotating the root credential.
|
|
108
173
|
* A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
|
|
@@ -121,6 +186,10 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
121
186
|
* unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+. *Available only for Vault Enterprise*
|
|
122
187
|
*/
|
|
123
188
|
readonly rotationWindow: pulumi.Output<number | undefined>;
|
|
189
|
+
/**
|
|
190
|
+
* Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
|
|
191
|
+
*/
|
|
192
|
+
readonly sealWrap: pulumi.Output<boolean>;
|
|
124
193
|
/**
|
|
125
194
|
* The subscription id for the Azure Active Directory.
|
|
126
195
|
*/
|
|
@@ -142,6 +211,26 @@ export declare class Backend extends pulumi.CustomResource {
|
|
|
142
211
|
* Input properties used for looking up and filtering Backend resources.
|
|
143
212
|
*/
|
|
144
213
|
export interface BackendState {
|
|
214
|
+
/**
|
|
215
|
+
* Accessor of the mount
|
|
216
|
+
*/
|
|
217
|
+
accessor?: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* List of managed key registry entry names that the mount in question is allowed to access
|
|
220
|
+
*/
|
|
221
|
+
allowedManagedKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
222
|
+
/**
|
|
223
|
+
* List of headers to allow and pass from the request to the plugin
|
|
224
|
+
*/
|
|
225
|
+
allowedResponseHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
226
|
+
/**
|
|
227
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
|
|
228
|
+
*/
|
|
229
|
+
auditNonHmacRequestKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
230
|
+
/**
|
|
231
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
|
|
232
|
+
*/
|
|
233
|
+
auditNonHmacResponseKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
145
234
|
/**
|
|
146
235
|
* The OAuth2 client id to connect to Azure.
|
|
147
236
|
*/
|
|
@@ -150,6 +239,14 @@ export interface BackendState {
|
|
|
150
239
|
* The OAuth2 client secret to connect to Azure.
|
|
151
240
|
*/
|
|
152
241
|
clientSecret?: pulumi.Input<string>;
|
|
242
|
+
/**
|
|
243
|
+
* Default lease duration for tokens and secrets in seconds
|
|
244
|
+
*/
|
|
245
|
+
defaultLeaseTtlSeconds?: pulumi.Input<number>;
|
|
246
|
+
/**
|
|
247
|
+
* List of headers to allow and pass from the request to the plugin
|
|
248
|
+
*/
|
|
249
|
+
delegatedAuthAccessors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
153
250
|
/**
|
|
154
251
|
* Human-friendly description of the mount for the backend.
|
|
155
252
|
*/
|
|
@@ -168,14 +265,21 @@ export interface BackendState {
|
|
|
168
265
|
* The Azure environment.
|
|
169
266
|
*/
|
|
170
267
|
environment?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* Enable the secrets engine to access Vault's external entropy source
|
|
270
|
+
*/
|
|
271
|
+
externalEntropyAccess?: pulumi.Input<boolean>;
|
|
272
|
+
/**
|
|
273
|
+
* If set to true, disables caching.
|
|
274
|
+
*/
|
|
275
|
+
forceNoCache?: pulumi.Input<boolean>;
|
|
171
276
|
/**
|
|
172
277
|
* The audience claim value. Requires Vault 1.17+.
|
|
173
278
|
* *Available only for Vault Enterprise*
|
|
174
279
|
*/
|
|
175
280
|
identityTokenAudience?: pulumi.Input<string>;
|
|
176
281
|
/**
|
|
177
|
-
* The key to use for signing identity tokens.
|
|
178
|
-
* *Available only for Vault Enterprise*
|
|
282
|
+
* The key to use for signing identity tokens.
|
|
179
283
|
*/
|
|
180
284
|
identityTokenKey?: pulumi.Input<string>;
|
|
181
285
|
/**
|
|
@@ -183,6 +287,18 @@ export interface BackendState {
|
|
|
183
287
|
* *Available only for Vault Enterprise*
|
|
184
288
|
*/
|
|
185
289
|
identityTokenTtl?: pulumi.Input<number>;
|
|
290
|
+
/**
|
|
291
|
+
* Specifies whether to show this mount in the UI-specific listing endpoint
|
|
292
|
+
*/
|
|
293
|
+
listingVisibility?: pulumi.Input<string>;
|
|
294
|
+
/**
|
|
295
|
+
* Local mount flag that can be explicitly set to true to enforce local mount in HA environment
|
|
296
|
+
*/
|
|
297
|
+
local?: pulumi.Input<boolean>;
|
|
298
|
+
/**
|
|
299
|
+
* Maximum possible lease duration for tokens and secrets in seconds
|
|
300
|
+
*/
|
|
301
|
+
maxLeaseTtlSeconds?: pulumi.Input<number>;
|
|
186
302
|
/**
|
|
187
303
|
* The namespace to provision the resource in.
|
|
188
304
|
* The value should not contain leading or trailing forward slashes.
|
|
@@ -190,10 +306,28 @@ export interface BackendState {
|
|
|
190
306
|
* *Available only for Vault Enterprise*.
|
|
191
307
|
*/
|
|
192
308
|
namespace?: pulumi.Input<string>;
|
|
309
|
+
/**
|
|
310
|
+
* Specifies mount type specific options that are passed to the backend
|
|
311
|
+
*/
|
|
312
|
+
options?: pulumi.Input<{
|
|
313
|
+
[key: string]: pulumi.Input<string>;
|
|
314
|
+
}>;
|
|
315
|
+
/**
|
|
316
|
+
* List of headers to allow and pass from the request to the plugin
|
|
317
|
+
*/
|
|
318
|
+
passthroughRequestHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
193
319
|
/**
|
|
194
320
|
* The unique path this backend should be mounted at. Defaults to `azure`.
|
|
195
321
|
*/
|
|
196
322
|
path?: pulumi.Input<string>;
|
|
323
|
+
/**
|
|
324
|
+
* Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
|
|
325
|
+
*/
|
|
326
|
+
pluginVersion?: pulumi.Input<string>;
|
|
327
|
+
/**
|
|
328
|
+
* The TTL in seconds of the root password in Azure when rotate-root generates a new client secret
|
|
329
|
+
*/
|
|
330
|
+
rootPasswordTtl?: pulumi.Input<number>;
|
|
197
331
|
/**
|
|
198
332
|
* The amount of time in seconds Vault should wait before rotating the root credential.
|
|
199
333
|
* A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
|
|
@@ -212,6 +346,10 @@ export interface BackendState {
|
|
|
212
346
|
* unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+. *Available only for Vault Enterprise*
|
|
213
347
|
*/
|
|
214
348
|
rotationWindow?: pulumi.Input<number>;
|
|
349
|
+
/**
|
|
350
|
+
* Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
|
|
351
|
+
*/
|
|
352
|
+
sealWrap?: pulumi.Input<boolean>;
|
|
215
353
|
/**
|
|
216
354
|
* The subscription id for the Azure Active Directory.
|
|
217
355
|
*/
|
|
@@ -225,6 +363,22 @@ export interface BackendState {
|
|
|
225
363
|
* The set of arguments for constructing a Backend resource.
|
|
226
364
|
*/
|
|
227
365
|
export interface BackendArgs {
|
|
366
|
+
/**
|
|
367
|
+
* List of managed key registry entry names that the mount in question is allowed to access
|
|
368
|
+
*/
|
|
369
|
+
allowedManagedKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
370
|
+
/**
|
|
371
|
+
* List of headers to allow and pass from the request to the plugin
|
|
372
|
+
*/
|
|
373
|
+
allowedResponseHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
374
|
+
/**
|
|
375
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
|
|
376
|
+
*/
|
|
377
|
+
auditNonHmacRequestKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
378
|
+
/**
|
|
379
|
+
* Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
|
|
380
|
+
*/
|
|
381
|
+
auditNonHmacResponseKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
228
382
|
/**
|
|
229
383
|
* The OAuth2 client id to connect to Azure.
|
|
230
384
|
*/
|
|
@@ -233,6 +387,14 @@ export interface BackendArgs {
|
|
|
233
387
|
* The OAuth2 client secret to connect to Azure.
|
|
234
388
|
*/
|
|
235
389
|
clientSecret?: pulumi.Input<string>;
|
|
390
|
+
/**
|
|
391
|
+
* Default lease duration for tokens and secrets in seconds
|
|
392
|
+
*/
|
|
393
|
+
defaultLeaseTtlSeconds?: pulumi.Input<number>;
|
|
394
|
+
/**
|
|
395
|
+
* List of headers to allow and pass from the request to the plugin
|
|
396
|
+
*/
|
|
397
|
+
delegatedAuthAccessors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
236
398
|
/**
|
|
237
399
|
* Human-friendly description of the mount for the backend.
|
|
238
400
|
*/
|
|
@@ -251,14 +413,21 @@ export interface BackendArgs {
|
|
|
251
413
|
* The Azure environment.
|
|
252
414
|
*/
|
|
253
415
|
environment?: pulumi.Input<string>;
|
|
416
|
+
/**
|
|
417
|
+
* Enable the secrets engine to access Vault's external entropy source
|
|
418
|
+
*/
|
|
419
|
+
externalEntropyAccess?: pulumi.Input<boolean>;
|
|
420
|
+
/**
|
|
421
|
+
* If set to true, disables caching.
|
|
422
|
+
*/
|
|
423
|
+
forceNoCache?: pulumi.Input<boolean>;
|
|
254
424
|
/**
|
|
255
425
|
* The audience claim value. Requires Vault 1.17+.
|
|
256
426
|
* *Available only for Vault Enterprise*
|
|
257
427
|
*/
|
|
258
428
|
identityTokenAudience?: pulumi.Input<string>;
|
|
259
429
|
/**
|
|
260
|
-
* The key to use for signing identity tokens.
|
|
261
|
-
* *Available only for Vault Enterprise*
|
|
430
|
+
* The key to use for signing identity tokens.
|
|
262
431
|
*/
|
|
263
432
|
identityTokenKey?: pulumi.Input<string>;
|
|
264
433
|
/**
|
|
@@ -266,6 +435,18 @@ export interface BackendArgs {
|
|
|
266
435
|
* *Available only for Vault Enterprise*
|
|
267
436
|
*/
|
|
268
437
|
identityTokenTtl?: pulumi.Input<number>;
|
|
438
|
+
/**
|
|
439
|
+
* Specifies whether to show this mount in the UI-specific listing endpoint
|
|
440
|
+
*/
|
|
441
|
+
listingVisibility?: pulumi.Input<string>;
|
|
442
|
+
/**
|
|
443
|
+
* Local mount flag that can be explicitly set to true to enforce local mount in HA environment
|
|
444
|
+
*/
|
|
445
|
+
local?: pulumi.Input<boolean>;
|
|
446
|
+
/**
|
|
447
|
+
* Maximum possible lease duration for tokens and secrets in seconds
|
|
448
|
+
*/
|
|
449
|
+
maxLeaseTtlSeconds?: pulumi.Input<number>;
|
|
269
450
|
/**
|
|
270
451
|
* The namespace to provision the resource in.
|
|
271
452
|
* The value should not contain leading or trailing forward slashes.
|
|
@@ -273,10 +454,28 @@ export interface BackendArgs {
|
|
|
273
454
|
* *Available only for Vault Enterprise*.
|
|
274
455
|
*/
|
|
275
456
|
namespace?: pulumi.Input<string>;
|
|
457
|
+
/**
|
|
458
|
+
* Specifies mount type specific options that are passed to the backend
|
|
459
|
+
*/
|
|
460
|
+
options?: pulumi.Input<{
|
|
461
|
+
[key: string]: pulumi.Input<string>;
|
|
462
|
+
}>;
|
|
463
|
+
/**
|
|
464
|
+
* List of headers to allow and pass from the request to the plugin
|
|
465
|
+
*/
|
|
466
|
+
passthroughRequestHeaders?: pulumi.Input<pulumi.Input<string>[]>;
|
|
276
467
|
/**
|
|
277
468
|
* The unique path this backend should be mounted at. Defaults to `azure`.
|
|
278
469
|
*/
|
|
279
470
|
path?: pulumi.Input<string>;
|
|
471
|
+
/**
|
|
472
|
+
* Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
|
|
473
|
+
*/
|
|
474
|
+
pluginVersion?: pulumi.Input<string>;
|
|
475
|
+
/**
|
|
476
|
+
* The TTL in seconds of the root password in Azure when rotate-root generates a new client secret
|
|
477
|
+
*/
|
|
478
|
+
rootPasswordTtl?: pulumi.Input<number>;
|
|
280
479
|
/**
|
|
281
480
|
* The amount of time in seconds Vault should wait before rotating the root credential.
|
|
282
481
|
* A zero value tells Vault not to rotate the root credential. The minimum rotation period is 10 seconds. Requires Vault Enterprise 1.19+.
|
|
@@ -295,6 +494,10 @@ export interface BackendArgs {
|
|
|
295
494
|
* unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+. *Available only for Vault Enterprise*
|
|
296
495
|
*/
|
|
297
496
|
rotationWindow?: pulumi.Input<number>;
|
|
497
|
+
/**
|
|
498
|
+
* Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
|
|
499
|
+
*/
|
|
500
|
+
sealWrap?: pulumi.Input<boolean>;
|
|
298
501
|
/**
|
|
299
502
|
* The subscription id for the Azure Active Directory.
|
|
300
503
|
*/
|
package/azure/backend.js
CHANGED
|
@@ -69,20 +69,37 @@ class Backend extends pulumi.CustomResource {
|
|
|
69
69
|
opts = opts || {};
|
|
70
70
|
if (opts.id) {
|
|
71
71
|
const state = argsOrState;
|
|
72
|
+
resourceInputs["accessor"] = state ? state.accessor : undefined;
|
|
73
|
+
resourceInputs["allowedManagedKeys"] = state ? state.allowedManagedKeys : undefined;
|
|
74
|
+
resourceInputs["allowedResponseHeaders"] = state ? state.allowedResponseHeaders : undefined;
|
|
75
|
+
resourceInputs["auditNonHmacRequestKeys"] = state ? state.auditNonHmacRequestKeys : undefined;
|
|
76
|
+
resourceInputs["auditNonHmacResponseKeys"] = state ? state.auditNonHmacResponseKeys : undefined;
|
|
72
77
|
resourceInputs["clientId"] = state ? state.clientId : undefined;
|
|
73
78
|
resourceInputs["clientSecret"] = state ? state.clientSecret : undefined;
|
|
79
|
+
resourceInputs["defaultLeaseTtlSeconds"] = state ? state.defaultLeaseTtlSeconds : undefined;
|
|
80
|
+
resourceInputs["delegatedAuthAccessors"] = state ? state.delegatedAuthAccessors : undefined;
|
|
74
81
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
75
82
|
resourceInputs["disableAutomatedRotation"] = state ? state.disableAutomatedRotation : undefined;
|
|
76
83
|
resourceInputs["disableRemount"] = state ? state.disableRemount : undefined;
|
|
77
84
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
85
|
+
resourceInputs["externalEntropyAccess"] = state ? state.externalEntropyAccess : undefined;
|
|
86
|
+
resourceInputs["forceNoCache"] = state ? state.forceNoCache : undefined;
|
|
78
87
|
resourceInputs["identityTokenAudience"] = state ? state.identityTokenAudience : undefined;
|
|
79
88
|
resourceInputs["identityTokenKey"] = state ? state.identityTokenKey : undefined;
|
|
80
89
|
resourceInputs["identityTokenTtl"] = state ? state.identityTokenTtl : undefined;
|
|
90
|
+
resourceInputs["listingVisibility"] = state ? state.listingVisibility : undefined;
|
|
91
|
+
resourceInputs["local"] = state ? state.local : undefined;
|
|
92
|
+
resourceInputs["maxLeaseTtlSeconds"] = state ? state.maxLeaseTtlSeconds : undefined;
|
|
81
93
|
resourceInputs["namespace"] = state ? state.namespace : undefined;
|
|
94
|
+
resourceInputs["options"] = state ? state.options : undefined;
|
|
95
|
+
resourceInputs["passthroughRequestHeaders"] = state ? state.passthroughRequestHeaders : undefined;
|
|
82
96
|
resourceInputs["path"] = state ? state.path : undefined;
|
|
97
|
+
resourceInputs["pluginVersion"] = state ? state.pluginVersion : undefined;
|
|
98
|
+
resourceInputs["rootPasswordTtl"] = state ? state.rootPasswordTtl : undefined;
|
|
83
99
|
resourceInputs["rotationPeriod"] = state ? state.rotationPeriod : undefined;
|
|
84
100
|
resourceInputs["rotationSchedule"] = state ? state.rotationSchedule : undefined;
|
|
85
101
|
resourceInputs["rotationWindow"] = state ? state.rotationWindow : undefined;
|
|
102
|
+
resourceInputs["sealWrap"] = state ? state.sealWrap : undefined;
|
|
86
103
|
resourceInputs["subscriptionId"] = state ? state.subscriptionId : undefined;
|
|
87
104
|
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
|
|
88
105
|
}
|
|
@@ -94,22 +111,39 @@ class Backend extends pulumi.CustomResource {
|
|
|
94
111
|
if ((!args || args.tenantId === undefined) && !opts.urn) {
|
|
95
112
|
throw new Error("Missing required property 'tenantId'");
|
|
96
113
|
}
|
|
114
|
+
resourceInputs["allowedManagedKeys"] = args ? args.allowedManagedKeys : undefined;
|
|
115
|
+
resourceInputs["allowedResponseHeaders"] = args ? args.allowedResponseHeaders : undefined;
|
|
116
|
+
resourceInputs["auditNonHmacRequestKeys"] = args ? args.auditNonHmacRequestKeys : undefined;
|
|
117
|
+
resourceInputs["auditNonHmacResponseKeys"] = args ? args.auditNonHmacResponseKeys : undefined;
|
|
97
118
|
resourceInputs["clientId"] = (args === null || args === void 0 ? void 0 : args.clientId) ? pulumi.secret(args.clientId) : undefined;
|
|
98
119
|
resourceInputs["clientSecret"] = (args === null || args === void 0 ? void 0 : args.clientSecret) ? pulumi.secret(args.clientSecret) : undefined;
|
|
120
|
+
resourceInputs["defaultLeaseTtlSeconds"] = args ? args.defaultLeaseTtlSeconds : undefined;
|
|
121
|
+
resourceInputs["delegatedAuthAccessors"] = args ? args.delegatedAuthAccessors : undefined;
|
|
99
122
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
100
123
|
resourceInputs["disableAutomatedRotation"] = args ? args.disableAutomatedRotation : undefined;
|
|
101
124
|
resourceInputs["disableRemount"] = args ? args.disableRemount : undefined;
|
|
102
125
|
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
126
|
+
resourceInputs["externalEntropyAccess"] = args ? args.externalEntropyAccess : undefined;
|
|
127
|
+
resourceInputs["forceNoCache"] = args ? args.forceNoCache : undefined;
|
|
103
128
|
resourceInputs["identityTokenAudience"] = args ? args.identityTokenAudience : undefined;
|
|
104
129
|
resourceInputs["identityTokenKey"] = args ? args.identityTokenKey : undefined;
|
|
105
130
|
resourceInputs["identityTokenTtl"] = args ? args.identityTokenTtl : undefined;
|
|
131
|
+
resourceInputs["listingVisibility"] = args ? args.listingVisibility : undefined;
|
|
132
|
+
resourceInputs["local"] = args ? args.local : undefined;
|
|
133
|
+
resourceInputs["maxLeaseTtlSeconds"] = args ? args.maxLeaseTtlSeconds : undefined;
|
|
106
134
|
resourceInputs["namespace"] = args ? args.namespace : undefined;
|
|
135
|
+
resourceInputs["options"] = args ? args.options : undefined;
|
|
136
|
+
resourceInputs["passthroughRequestHeaders"] = args ? args.passthroughRequestHeaders : undefined;
|
|
107
137
|
resourceInputs["path"] = args ? args.path : undefined;
|
|
138
|
+
resourceInputs["pluginVersion"] = args ? args.pluginVersion : undefined;
|
|
139
|
+
resourceInputs["rootPasswordTtl"] = args ? args.rootPasswordTtl : undefined;
|
|
108
140
|
resourceInputs["rotationPeriod"] = args ? args.rotationPeriod : undefined;
|
|
109
141
|
resourceInputs["rotationSchedule"] = args ? args.rotationSchedule : undefined;
|
|
110
142
|
resourceInputs["rotationWindow"] = args ? args.rotationWindow : undefined;
|
|
143
|
+
resourceInputs["sealWrap"] = args ? args.sealWrap : undefined;
|
|
111
144
|
resourceInputs["subscriptionId"] = (args === null || args === void 0 ? void 0 : args.subscriptionId) ? pulumi.secret(args.subscriptionId) : undefined;
|
|
112
145
|
resourceInputs["tenantId"] = (args === null || args === void 0 ? void 0 : args.tenantId) ? pulumi.secret(args.tenantId) : undefined;
|
|
146
|
+
resourceInputs["accessor"] = undefined /*out*/;
|
|
113
147
|
}
|
|
114
148
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
115
149
|
const secretOpts = { additionalSecretOutputs: ["clientId", "clientSecret", "subscriptionId", "tenantId"] };
|
package/azure/backend.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backend.js","sourceRoot":"","sources":["../../azure/backend.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"backend.js","sourceRoot":"","sources":["../../azure/backend.ts"],"names":[],"mappings":"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"}
|