@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.
Files changed (62) hide show
  1. package/aws/secretBackend.d.ts +173 -21
  2. package/aws/secretBackend.js +26 -0
  3. package/aws/secretBackend.js.map +1 -1
  4. package/azure/backend.d.ts +209 -6
  5. package/azure/backend.js +34 -0
  6. package/azure/backend.js.map +1 -1
  7. package/consul/secretBackend.d.ts +179 -12
  8. package/consul/secretBackend.js +28 -0
  9. package/consul/secretBackend.js.map +1 -1
  10. package/database/secretsMount.d.ts +12 -0
  11. package/database/secretsMount.js +2 -0
  12. package/database/secretsMount.js.map +1 -1
  13. package/gcp/secretBackend.d.ts +165 -24
  14. package/gcp/secretBackend.js +24 -0
  15. package/gcp/secretBackend.js.map +1 -1
  16. package/index.d.ts +6 -0
  17. package/index.js +12 -2
  18. package/index.js.map +1 -1
  19. package/jwt/authBackend.d.ts +18 -0
  20. package/jwt/authBackend.js +2 -0
  21. package/jwt/authBackend.js.map +1 -1
  22. package/kmip/secretBackend.d.ts +209 -3
  23. package/kmip/secretBackend.js +34 -0
  24. package/kmip/secretBackend.js.map +1 -1
  25. package/kubernetes/secretBackend.d.ts +12 -0
  26. package/kubernetes/secretBackend.js +2 -0
  27. package/kubernetes/secretBackend.js.map +1 -1
  28. package/ldap/secretBackend.d.ts +24 -15
  29. package/ldap/secretBackend.js +2 -0
  30. package/ldap/secretBackend.js.map +1 -1
  31. package/mount.d.ts +12 -0
  32. package/mount.js +2 -0
  33. package/mount.js.map +1 -1
  34. package/nomadSecretBackend.d.ts +179 -9
  35. package/nomadSecretBackend.js +28 -0
  36. package/nomadSecretBackend.js.map +1 -1
  37. package/ociAuthBackend.d.ts +205 -0
  38. package/ociAuthBackend.js +95 -0
  39. package/ociAuthBackend.js.map +1 -0
  40. package/ociAuthBackendRole.d.ts +237 -0
  41. package/ociAuthBackendRole.js +109 -0
  42. package/ociAuthBackendRole.js.map +1 -0
  43. package/package.json +2 -2
  44. package/pkisecret/backendConfigScep.d.ts +21 -9
  45. package/pkisecret/backendConfigScep.js +2 -0
  46. package/pkisecret/backendConfigScep.js.map +1 -1
  47. package/pkisecret/getBackendConfigScep.d.ts +12 -0
  48. package/pkisecret/getBackendConfigScep.js +2 -0
  49. package/pkisecret/getBackendConfigScep.js.map +1 -1
  50. package/rabbitmq/secretBackend.d.ts +191 -15
  51. package/rabbitmq/secretBackend.js +30 -0
  52. package/rabbitmq/secretBackend.js.map +1 -1
  53. package/ssh/secretBackendCa.d.ts +27 -3
  54. package/ssh/secretBackendCa.js +4 -0
  55. package/ssh/secretBackendCa.js.map +1 -1
  56. package/terraformcloud/secretBackend.d.ts +191 -12
  57. package/terraformcloud/secretBackend.js +30 -0
  58. package/terraformcloud/secretBackend.js.map +1 -1
  59. package/transit/secretBackendKey.d.ts +21 -9
  60. package/transit/secretBackendKey.js.map +1 -1
  61. package/types/input.d.ts +43 -0
  62. package/types/output.d.ts +43 -0
@@ -30,12 +30,35 @@ export declare class SecretBackend extends pulumi.CustomResource {
30
30
  */
31
31
  readonly accessKey: pulumi.Output<string | undefined>;
32
32
  /**
33
- * The default TTL for credentials
34
- * issued by this backend.
33
+ * Accessor of the mount
34
+ */
35
+ readonly accessor: pulumi.Output<string>;
36
+ /**
37
+ * List of managed key registry entry names that the mount in question is allowed to access
38
+ */
39
+ readonly allowedManagedKeys: pulumi.Output<string[] | undefined>;
40
+ /**
41
+ * List of headers to allow and pass from the request to the plugin
42
+ */
43
+ readonly allowedResponseHeaders: pulumi.Output<string[] | undefined>;
44
+ /**
45
+ * Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
46
+ */
47
+ readonly auditNonHmacRequestKeys: pulumi.Output<string[]>;
48
+ /**
49
+ * Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
50
+ */
51
+ readonly auditNonHmacResponseKeys: pulumi.Output<string[]>;
52
+ /**
53
+ * Default lease duration for secrets in seconds
35
54
  */
36
55
  readonly defaultLeaseTtlSeconds: pulumi.Output<number>;
37
56
  /**
38
- * A human-friendly description for this backend.
57
+ * List of headers to allow and pass from the request to the plugin
58
+ */
59
+ readonly delegatedAuthAccessors: pulumi.Output<string[] | undefined>;
60
+ /**
61
+ * Human-friendly description of the mount for the backend.
39
62
  */
40
63
  readonly description: pulumi.Output<string | undefined>;
41
64
  /**
@@ -47,6 +70,14 @@ export declare class SecretBackend extends pulumi.CustomResource {
47
70
  * See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
48
71
  */
49
72
  readonly disableRemount: pulumi.Output<boolean | undefined>;
73
+ /**
74
+ * Enable the secrets engine to access Vault's external entropy source
75
+ */
76
+ readonly externalEntropyAccess: pulumi.Output<boolean | undefined>;
77
+ /**
78
+ * If set to true, disables caching.
79
+ */
80
+ readonly forceNoCache: pulumi.Output<boolean>;
50
81
  /**
51
82
  * Specifies a custom HTTP IAM endpoint to use.
52
83
  */
@@ -56,7 +87,7 @@ export declare class SecretBackend extends pulumi.CustomResource {
56
87
  */
57
88
  readonly identityTokenAudience: pulumi.Output<string | undefined>;
58
89
  /**
59
- * The key to use for signing identity tokens. Requires Vault 1.16+.
90
+ * The key to use for signing identity tokens.
60
91
  */
61
92
  readonly identityTokenKey: pulumi.Output<string | undefined>;
62
93
  /**
@@ -64,12 +95,15 @@ export declare class SecretBackend extends pulumi.CustomResource {
64
95
  */
65
96
  readonly identityTokenTtl: pulumi.Output<number>;
66
97
  /**
67
- * Specifies whether the secrets mount will be marked as local. Local mounts are not replicated to performance replicas.
98
+ * Specifies whether to show this mount in the UI-specific listing endpoint
99
+ */
100
+ readonly listingVisibility: pulumi.Output<string | undefined>;
101
+ /**
102
+ * Specifies if the secret backend is local only
68
103
  */
69
104
  readonly local: pulumi.Output<boolean | undefined>;
70
105
  /**
71
- * The maximum TTL that can be requested
72
- * for credentials issued by this backend.
106
+ * Maximum possible lease duration for secrets in seconds
73
107
  */
74
108
  readonly maxLeaseTtlSeconds: pulumi.Output<number>;
75
109
  /**
@@ -79,11 +113,25 @@ export declare class SecretBackend extends pulumi.CustomResource {
79
113
  * *Available only for Vault Enterprise*.
80
114
  */
81
115
  readonly namespace: pulumi.Output<string | undefined>;
116
+ /**
117
+ * Specifies mount type specific options that are passed to the backend
118
+ */
119
+ readonly options: pulumi.Output<{
120
+ [key: string]: string;
121
+ } | undefined>;
122
+ /**
123
+ * List of headers to allow and pass from the request to the plugin
124
+ */
125
+ readonly passthroughRequestHeaders: pulumi.Output<string[] | undefined>;
82
126
  /**
83
127
  * The unique path this backend should be mounted at. Must
84
128
  * not begin or end with a `/`. Defaults to `aws`.
85
129
  */
86
130
  readonly path: pulumi.Output<string | undefined>;
131
+ /**
132
+ * Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
133
+ */
134
+ readonly pluginVersion: pulumi.Output<string | undefined>;
87
135
  /**
88
136
  * The AWS region to make API calls against. Defaults to us-east-1.
89
137
  */
@@ -108,6 +156,10 @@ export declare class SecretBackend extends pulumi.CustomResource {
108
156
  * unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+.
109
157
  */
110
158
  readonly rotationWindow: pulumi.Output<number | undefined>;
159
+ /**
160
+ * Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
161
+ */
162
+ readonly sealWrap: pulumi.Output<boolean>;
111
163
  /**
112
164
  * The AWS Secret Access Key to use when generating new credentials.
113
165
  */
@@ -160,12 +212,35 @@ export interface SecretBackendState {
160
212
  */
161
213
  accessKey?: pulumi.Input<string>;
162
214
  /**
163
- * The default TTL for credentials
164
- * issued by this backend.
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>[]>;
234
+ /**
235
+ * Default lease duration for secrets in seconds
165
236
  */
166
237
  defaultLeaseTtlSeconds?: pulumi.Input<number>;
167
238
  /**
168
- * A human-friendly description for this backend.
239
+ * List of headers to allow and pass from the request to the plugin
240
+ */
241
+ delegatedAuthAccessors?: pulumi.Input<pulumi.Input<string>[]>;
242
+ /**
243
+ * Human-friendly description of the mount for the backend.
169
244
  */
170
245
  description?: pulumi.Input<string>;
171
246
  /**
@@ -177,6 +252,14 @@ export interface SecretBackendState {
177
252
  * See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
178
253
  */
179
254
  disableRemount?: pulumi.Input<boolean>;
255
+ /**
256
+ * Enable the secrets engine to access Vault's external entropy source
257
+ */
258
+ externalEntropyAccess?: pulumi.Input<boolean>;
259
+ /**
260
+ * If set to true, disables caching.
261
+ */
262
+ forceNoCache?: pulumi.Input<boolean>;
180
263
  /**
181
264
  * Specifies a custom HTTP IAM endpoint to use.
182
265
  */
@@ -186,7 +269,7 @@ export interface SecretBackendState {
186
269
  */
187
270
  identityTokenAudience?: pulumi.Input<string>;
188
271
  /**
189
- * The key to use for signing identity tokens. Requires Vault 1.16+.
272
+ * The key to use for signing identity tokens.
190
273
  */
191
274
  identityTokenKey?: pulumi.Input<string>;
192
275
  /**
@@ -194,12 +277,15 @@ export interface SecretBackendState {
194
277
  */
195
278
  identityTokenTtl?: pulumi.Input<number>;
196
279
  /**
197
- * Specifies whether the secrets mount will be marked as local. Local mounts are not replicated to performance replicas.
280
+ * Specifies whether to show this mount in the UI-specific listing endpoint
281
+ */
282
+ listingVisibility?: pulumi.Input<string>;
283
+ /**
284
+ * Specifies if the secret backend is local only
198
285
  */
199
286
  local?: pulumi.Input<boolean>;
200
287
  /**
201
- * The maximum TTL that can be requested
202
- * for credentials issued by this backend.
288
+ * Maximum possible lease duration for secrets in seconds
203
289
  */
204
290
  maxLeaseTtlSeconds?: pulumi.Input<number>;
205
291
  /**
@@ -209,11 +295,25 @@ export interface SecretBackendState {
209
295
  * *Available only for Vault Enterprise*.
210
296
  */
211
297
  namespace?: pulumi.Input<string>;
298
+ /**
299
+ * Specifies mount type specific options that are passed to the backend
300
+ */
301
+ options?: pulumi.Input<{
302
+ [key: string]: pulumi.Input<string>;
303
+ }>;
304
+ /**
305
+ * List of headers to allow and pass from the request to the plugin
306
+ */
307
+ passthroughRequestHeaders?: pulumi.Input<pulumi.Input<string>[]>;
212
308
  /**
213
309
  * The unique path this backend should be mounted at. Must
214
310
  * not begin or end with a `/`. Defaults to `aws`.
215
311
  */
216
312
  path?: pulumi.Input<string>;
313
+ /**
314
+ * Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
315
+ */
316
+ pluginVersion?: pulumi.Input<string>;
217
317
  /**
218
318
  * The AWS region to make API calls against. Defaults to us-east-1.
219
319
  */
@@ -238,6 +338,10 @@ export interface SecretBackendState {
238
338
  * unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+.
239
339
  */
240
340
  rotationWindow?: pulumi.Input<number>;
341
+ /**
342
+ * Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
343
+ */
344
+ sealWrap?: pulumi.Input<boolean>;
241
345
  /**
242
346
  * The AWS Secret Access Key to use when generating new credentials.
243
347
  */
@@ -282,12 +386,31 @@ export interface SecretBackendArgs {
282
386
  */
283
387
  accessKey?: pulumi.Input<string>;
284
388
  /**
285
- * The default TTL for credentials
286
- * issued by this backend.
389
+ * List of managed key registry entry names that the mount in question is allowed to access
390
+ */
391
+ allowedManagedKeys?: pulumi.Input<pulumi.Input<string>[]>;
392
+ /**
393
+ * List of headers to allow and pass from the request to the plugin
394
+ */
395
+ allowedResponseHeaders?: pulumi.Input<pulumi.Input<string>[]>;
396
+ /**
397
+ * Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
398
+ */
399
+ auditNonHmacRequestKeys?: pulumi.Input<pulumi.Input<string>[]>;
400
+ /**
401
+ * Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
402
+ */
403
+ auditNonHmacResponseKeys?: pulumi.Input<pulumi.Input<string>[]>;
404
+ /**
405
+ * Default lease duration for secrets in seconds
287
406
  */
288
407
  defaultLeaseTtlSeconds?: pulumi.Input<number>;
289
408
  /**
290
- * A human-friendly description for this backend.
409
+ * List of headers to allow and pass from the request to the plugin
410
+ */
411
+ delegatedAuthAccessors?: pulumi.Input<pulumi.Input<string>[]>;
412
+ /**
413
+ * Human-friendly description of the mount for the backend.
291
414
  */
292
415
  description?: pulumi.Input<string>;
293
416
  /**
@@ -299,6 +422,14 @@ export interface SecretBackendArgs {
299
422
  * See here for more info on [Mount Migration](https://www.vaultproject.io/docs/concepts/mount-migration)
300
423
  */
301
424
  disableRemount?: pulumi.Input<boolean>;
425
+ /**
426
+ * Enable the secrets engine to access Vault's external entropy source
427
+ */
428
+ externalEntropyAccess?: pulumi.Input<boolean>;
429
+ /**
430
+ * If set to true, disables caching.
431
+ */
432
+ forceNoCache?: pulumi.Input<boolean>;
302
433
  /**
303
434
  * Specifies a custom HTTP IAM endpoint to use.
304
435
  */
@@ -308,7 +439,7 @@ export interface SecretBackendArgs {
308
439
  */
309
440
  identityTokenAudience?: pulumi.Input<string>;
310
441
  /**
311
- * The key to use for signing identity tokens. Requires Vault 1.16+.
442
+ * The key to use for signing identity tokens.
312
443
  */
313
444
  identityTokenKey?: pulumi.Input<string>;
314
445
  /**
@@ -316,12 +447,15 @@ export interface SecretBackendArgs {
316
447
  */
317
448
  identityTokenTtl?: pulumi.Input<number>;
318
449
  /**
319
- * Specifies whether the secrets mount will be marked as local. Local mounts are not replicated to performance replicas.
450
+ * Specifies whether to show this mount in the UI-specific listing endpoint
451
+ */
452
+ listingVisibility?: pulumi.Input<string>;
453
+ /**
454
+ * Specifies if the secret backend is local only
320
455
  */
321
456
  local?: pulumi.Input<boolean>;
322
457
  /**
323
- * The maximum TTL that can be requested
324
- * for credentials issued by this backend.
458
+ * Maximum possible lease duration for secrets in seconds
325
459
  */
326
460
  maxLeaseTtlSeconds?: pulumi.Input<number>;
327
461
  /**
@@ -331,11 +465,25 @@ export interface SecretBackendArgs {
331
465
  * *Available only for Vault Enterprise*.
332
466
  */
333
467
  namespace?: pulumi.Input<string>;
468
+ /**
469
+ * Specifies mount type specific options that are passed to the backend
470
+ */
471
+ options?: pulumi.Input<{
472
+ [key: string]: pulumi.Input<string>;
473
+ }>;
474
+ /**
475
+ * List of headers to allow and pass from the request to the plugin
476
+ */
477
+ passthroughRequestHeaders?: pulumi.Input<pulumi.Input<string>[]>;
334
478
  /**
335
479
  * The unique path this backend should be mounted at. Must
336
480
  * not begin or end with a `/`. Defaults to `aws`.
337
481
  */
338
482
  path?: pulumi.Input<string>;
483
+ /**
484
+ * Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
485
+ */
486
+ pluginVersion?: pulumi.Input<string>;
339
487
  /**
340
488
  * The AWS region to make API calls against. Defaults to us-east-1.
341
489
  */
@@ -360,6 +508,10 @@ export interface SecretBackendArgs {
360
508
  * unbound and the minimum allowable window is `3600`. Requires Vault Enterprise 1.19+.
361
509
  */
362
510
  rotationWindow?: pulumi.Input<number>;
511
+ /**
512
+ * Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
513
+ */
514
+ sealWrap?: pulumi.Input<boolean>;
363
515
  /**
364
516
  * The AWS Secret Access Key to use when generating new credentials.
365
517
  */
@@ -43,23 +43,36 @@ class SecretBackend extends pulumi.CustomResource {
43
43
  if (opts.id) {
44
44
  const state = argsOrState;
45
45
  resourceInputs["accessKey"] = state ? state.accessKey : undefined;
46
+ resourceInputs["accessor"] = state ? state.accessor : undefined;
47
+ resourceInputs["allowedManagedKeys"] = state ? state.allowedManagedKeys : undefined;
48
+ resourceInputs["allowedResponseHeaders"] = state ? state.allowedResponseHeaders : undefined;
49
+ resourceInputs["auditNonHmacRequestKeys"] = state ? state.auditNonHmacRequestKeys : undefined;
50
+ resourceInputs["auditNonHmacResponseKeys"] = state ? state.auditNonHmacResponseKeys : undefined;
46
51
  resourceInputs["defaultLeaseTtlSeconds"] = state ? state.defaultLeaseTtlSeconds : undefined;
52
+ resourceInputs["delegatedAuthAccessors"] = state ? state.delegatedAuthAccessors : undefined;
47
53
  resourceInputs["description"] = state ? state.description : undefined;
48
54
  resourceInputs["disableAutomatedRotation"] = state ? state.disableAutomatedRotation : undefined;
49
55
  resourceInputs["disableRemount"] = state ? state.disableRemount : undefined;
56
+ resourceInputs["externalEntropyAccess"] = state ? state.externalEntropyAccess : undefined;
57
+ resourceInputs["forceNoCache"] = state ? state.forceNoCache : undefined;
50
58
  resourceInputs["iamEndpoint"] = state ? state.iamEndpoint : undefined;
51
59
  resourceInputs["identityTokenAudience"] = state ? state.identityTokenAudience : undefined;
52
60
  resourceInputs["identityTokenKey"] = state ? state.identityTokenKey : undefined;
53
61
  resourceInputs["identityTokenTtl"] = state ? state.identityTokenTtl : undefined;
62
+ resourceInputs["listingVisibility"] = state ? state.listingVisibility : undefined;
54
63
  resourceInputs["local"] = state ? state.local : undefined;
55
64
  resourceInputs["maxLeaseTtlSeconds"] = state ? state.maxLeaseTtlSeconds : undefined;
56
65
  resourceInputs["namespace"] = state ? state.namespace : undefined;
66
+ resourceInputs["options"] = state ? state.options : undefined;
67
+ resourceInputs["passthroughRequestHeaders"] = state ? state.passthroughRequestHeaders : undefined;
57
68
  resourceInputs["path"] = state ? state.path : undefined;
69
+ resourceInputs["pluginVersion"] = state ? state.pluginVersion : undefined;
58
70
  resourceInputs["region"] = state ? state.region : undefined;
59
71
  resourceInputs["roleArn"] = state ? state.roleArn : undefined;
60
72
  resourceInputs["rotationPeriod"] = state ? state.rotationPeriod : undefined;
61
73
  resourceInputs["rotationSchedule"] = state ? state.rotationSchedule : undefined;
62
74
  resourceInputs["rotationWindow"] = state ? state.rotationWindow : undefined;
75
+ resourceInputs["sealWrap"] = state ? state.sealWrap : undefined;
63
76
  resourceInputs["secretKey"] = state ? state.secretKey : undefined;
64
77
  resourceInputs["stsEndpoint"] = state ? state.stsEndpoint : undefined;
65
78
  resourceInputs["stsFallbackEndpoints"] = state ? state.stsFallbackEndpoints : undefined;
@@ -70,29 +83,42 @@ class SecretBackend extends pulumi.CustomResource {
70
83
  else {
71
84
  const args = argsOrState;
72
85
  resourceInputs["accessKey"] = (args === null || args === void 0 ? void 0 : args.accessKey) ? pulumi.secret(args.accessKey) : undefined;
86
+ resourceInputs["allowedManagedKeys"] = args ? args.allowedManagedKeys : undefined;
87
+ resourceInputs["allowedResponseHeaders"] = args ? args.allowedResponseHeaders : undefined;
88
+ resourceInputs["auditNonHmacRequestKeys"] = args ? args.auditNonHmacRequestKeys : undefined;
89
+ resourceInputs["auditNonHmacResponseKeys"] = args ? args.auditNonHmacResponseKeys : undefined;
73
90
  resourceInputs["defaultLeaseTtlSeconds"] = args ? args.defaultLeaseTtlSeconds : undefined;
91
+ resourceInputs["delegatedAuthAccessors"] = args ? args.delegatedAuthAccessors : undefined;
74
92
  resourceInputs["description"] = args ? args.description : undefined;
75
93
  resourceInputs["disableAutomatedRotation"] = args ? args.disableAutomatedRotation : undefined;
76
94
  resourceInputs["disableRemount"] = args ? args.disableRemount : undefined;
95
+ resourceInputs["externalEntropyAccess"] = args ? args.externalEntropyAccess : undefined;
96
+ resourceInputs["forceNoCache"] = args ? args.forceNoCache : undefined;
77
97
  resourceInputs["iamEndpoint"] = args ? args.iamEndpoint : undefined;
78
98
  resourceInputs["identityTokenAudience"] = args ? args.identityTokenAudience : undefined;
79
99
  resourceInputs["identityTokenKey"] = args ? args.identityTokenKey : undefined;
80
100
  resourceInputs["identityTokenTtl"] = args ? args.identityTokenTtl : undefined;
101
+ resourceInputs["listingVisibility"] = args ? args.listingVisibility : undefined;
81
102
  resourceInputs["local"] = args ? args.local : undefined;
82
103
  resourceInputs["maxLeaseTtlSeconds"] = args ? args.maxLeaseTtlSeconds : undefined;
83
104
  resourceInputs["namespace"] = args ? args.namespace : undefined;
105
+ resourceInputs["options"] = args ? args.options : undefined;
106
+ resourceInputs["passthroughRequestHeaders"] = args ? args.passthroughRequestHeaders : undefined;
84
107
  resourceInputs["path"] = args ? args.path : undefined;
108
+ resourceInputs["pluginVersion"] = args ? args.pluginVersion : undefined;
85
109
  resourceInputs["region"] = args ? args.region : undefined;
86
110
  resourceInputs["roleArn"] = args ? args.roleArn : undefined;
87
111
  resourceInputs["rotationPeriod"] = args ? args.rotationPeriod : undefined;
88
112
  resourceInputs["rotationSchedule"] = args ? args.rotationSchedule : undefined;
89
113
  resourceInputs["rotationWindow"] = args ? args.rotationWindow : undefined;
114
+ resourceInputs["sealWrap"] = args ? args.sealWrap : undefined;
90
115
  resourceInputs["secretKey"] = (args === null || args === void 0 ? void 0 : args.secretKey) ? pulumi.secret(args.secretKey) : undefined;
91
116
  resourceInputs["stsEndpoint"] = args ? args.stsEndpoint : undefined;
92
117
  resourceInputs["stsFallbackEndpoints"] = args ? args.stsFallbackEndpoints : undefined;
93
118
  resourceInputs["stsFallbackRegions"] = args ? args.stsFallbackRegions : undefined;
94
119
  resourceInputs["stsRegion"] = args ? args.stsRegion : undefined;
95
120
  resourceInputs["usernameTemplate"] = args ? args.usernameTemplate : undefined;
121
+ resourceInputs["accessor"] = undefined /*out*/;
96
122
  }
97
123
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
98
124
  const secretOpts = { additionalSecretOutputs: ["accessKey", "secretKey"] };
@@ -1 +1 @@
1
- {"version":3,"file":"secretBackend.js","sourceRoot":"","sources":["../../aws/secretBackend.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"secretBackend.js","sourceRoot":"","sources":["../../aws/secretBackend.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAkLD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;SACnF;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,cAAc,CAAC,WAAW,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,WAAW,CAAC,GAAG,CAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,SAAS,EAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC,EAAE,CAAC;QAC3E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AAlSL,sCAmSC;AArRG,gBAAgB;AACO,0BAAY,GAAG,uCAAuC,CAAC"}