@pulumi/vault 6.3.0-alpha.1723010642 → 6.3.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/secretBackendRole.d.ts +39 -0
- package/aws/secretBackendRole.js +4 -0
- package/aws/secretBackendRole.js.map +1 -1
- package/identity/getEntity.d.ts +2 -2
- package/identity/getEntity.js +2 -2
- package/mount.d.ts +6 -3
- package/mount.js.map +1 -1
- package/package.json +2 -2
|
@@ -71,6 +71,11 @@ export declare class SecretBackendRole extends pulumi.CustomResource {
|
|
|
71
71
|
* `assumedRole` or `federationToken`.
|
|
72
72
|
*/
|
|
73
73
|
readonly defaultStsTtl: pulumi.Output<number>;
|
|
74
|
+
/**
|
|
75
|
+
* External ID to set for assume role creds.
|
|
76
|
+
* Valid only when `credentialType` is set to `assumedRole`.
|
|
77
|
+
*/
|
|
78
|
+
readonly externalId: pulumi.Output<string | undefined>;
|
|
74
79
|
/**
|
|
75
80
|
* A list of IAM group names. IAM users generated
|
|
76
81
|
* against this vault role will be added to these IAM Groups. For a credential
|
|
@@ -136,6 +141,14 @@ export declare class SecretBackendRole extends pulumi.CustomResource {
|
|
|
136
141
|
* prohibited otherwise.
|
|
137
142
|
*/
|
|
138
143
|
readonly roleArns: pulumi.Output<string[] | undefined>;
|
|
144
|
+
/**
|
|
145
|
+
* A map of strings representing key/value pairs to be set
|
|
146
|
+
* during assume role creds creation. Valid only when `credentialType` is set to
|
|
147
|
+
* `assumedRole`.
|
|
148
|
+
*/
|
|
149
|
+
readonly sessionTags: pulumi.Output<{
|
|
150
|
+
[key: string]: string;
|
|
151
|
+
} | undefined>;
|
|
139
152
|
/**
|
|
140
153
|
* The path for the user name. Valid only when
|
|
141
154
|
* `credentialType` is `iamUser`. Default is `/`.
|
|
@@ -173,6 +186,11 @@ export interface SecretBackendRoleState {
|
|
|
173
186
|
* `assumedRole` or `federationToken`.
|
|
174
187
|
*/
|
|
175
188
|
defaultStsTtl?: pulumi.Input<number>;
|
|
189
|
+
/**
|
|
190
|
+
* External ID to set for assume role creds.
|
|
191
|
+
* Valid only when `credentialType` is set to `assumedRole`.
|
|
192
|
+
*/
|
|
193
|
+
externalId?: pulumi.Input<string>;
|
|
176
194
|
/**
|
|
177
195
|
* A list of IAM group names. IAM users generated
|
|
178
196
|
* against this vault role will be added to these IAM Groups. For a credential
|
|
@@ -238,6 +256,14 @@ export interface SecretBackendRoleState {
|
|
|
238
256
|
* prohibited otherwise.
|
|
239
257
|
*/
|
|
240
258
|
roleArns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
259
|
+
/**
|
|
260
|
+
* A map of strings representing key/value pairs to be set
|
|
261
|
+
* during assume role creds creation. Valid only when `credentialType` is set to
|
|
262
|
+
* `assumedRole`.
|
|
263
|
+
*/
|
|
264
|
+
sessionTags?: pulumi.Input<{
|
|
265
|
+
[key: string]: pulumi.Input<string>;
|
|
266
|
+
}>;
|
|
241
267
|
/**
|
|
242
268
|
* The path for the user name. Valid only when
|
|
243
269
|
* `credentialType` is `iamUser`. Default is `/`.
|
|
@@ -267,6 +293,11 @@ export interface SecretBackendRoleArgs {
|
|
|
267
293
|
* `assumedRole` or `federationToken`.
|
|
268
294
|
*/
|
|
269
295
|
defaultStsTtl?: pulumi.Input<number>;
|
|
296
|
+
/**
|
|
297
|
+
* External ID to set for assume role creds.
|
|
298
|
+
* Valid only when `credentialType` is set to `assumedRole`.
|
|
299
|
+
*/
|
|
300
|
+
externalId?: pulumi.Input<string>;
|
|
270
301
|
/**
|
|
271
302
|
* A list of IAM group names. IAM users generated
|
|
272
303
|
* against this vault role will be added to these IAM Groups. For a credential
|
|
@@ -332,6 +363,14 @@ export interface SecretBackendRoleArgs {
|
|
|
332
363
|
* prohibited otherwise.
|
|
333
364
|
*/
|
|
334
365
|
roleArns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
366
|
+
/**
|
|
367
|
+
* A map of strings representing key/value pairs to be set
|
|
368
|
+
* during assume role creds creation. Valid only when `credentialType` is set to
|
|
369
|
+
* `assumedRole`.
|
|
370
|
+
*/
|
|
371
|
+
sessionTags?: pulumi.Input<{
|
|
372
|
+
[key: string]: pulumi.Input<string>;
|
|
373
|
+
}>;
|
|
335
374
|
/**
|
|
336
375
|
* The path for the user name. Valid only when
|
|
337
376
|
* `credentialType` is `iamUser`. Default is `/`.
|
package/aws/secretBackendRole.js
CHANGED
|
@@ -73,6 +73,7 @@ class SecretBackendRole extends pulumi.CustomResource {
|
|
|
73
73
|
resourceInputs["backend"] = state ? state.backend : undefined;
|
|
74
74
|
resourceInputs["credentialType"] = state ? state.credentialType : undefined;
|
|
75
75
|
resourceInputs["defaultStsTtl"] = state ? state.defaultStsTtl : undefined;
|
|
76
|
+
resourceInputs["externalId"] = state ? state.externalId : undefined;
|
|
76
77
|
resourceInputs["iamGroups"] = state ? state.iamGroups : undefined;
|
|
77
78
|
resourceInputs["iamTags"] = state ? state.iamTags : undefined;
|
|
78
79
|
resourceInputs["maxStsTtl"] = state ? state.maxStsTtl : undefined;
|
|
@@ -82,6 +83,7 @@ class SecretBackendRole extends pulumi.CustomResource {
|
|
|
82
83
|
resourceInputs["policyArns"] = state ? state.policyArns : undefined;
|
|
83
84
|
resourceInputs["policyDocument"] = state ? state.policyDocument : undefined;
|
|
84
85
|
resourceInputs["roleArns"] = state ? state.roleArns : undefined;
|
|
86
|
+
resourceInputs["sessionTags"] = state ? state.sessionTags : undefined;
|
|
85
87
|
resourceInputs["userPath"] = state ? state.userPath : undefined;
|
|
86
88
|
}
|
|
87
89
|
else {
|
|
@@ -95,6 +97,7 @@ class SecretBackendRole extends pulumi.CustomResource {
|
|
|
95
97
|
resourceInputs["backend"] = args ? args.backend : undefined;
|
|
96
98
|
resourceInputs["credentialType"] = args ? args.credentialType : undefined;
|
|
97
99
|
resourceInputs["defaultStsTtl"] = args ? args.defaultStsTtl : undefined;
|
|
100
|
+
resourceInputs["externalId"] = args ? args.externalId : undefined;
|
|
98
101
|
resourceInputs["iamGroups"] = args ? args.iamGroups : undefined;
|
|
99
102
|
resourceInputs["iamTags"] = args ? args.iamTags : undefined;
|
|
100
103
|
resourceInputs["maxStsTtl"] = args ? args.maxStsTtl : undefined;
|
|
@@ -104,6 +107,7 @@ class SecretBackendRole extends pulumi.CustomResource {
|
|
|
104
107
|
resourceInputs["policyArns"] = args ? args.policyArns : undefined;
|
|
105
108
|
resourceInputs["policyDocument"] = args ? args.policyDocument : undefined;
|
|
106
109
|
resourceInputs["roleArns"] = args ? args.roleArns : undefined;
|
|
110
|
+
resourceInputs["sessionTags"] = args ? args.sessionTags : undefined;
|
|
107
111
|
resourceInputs["userPath"] = args ? args.userPath : undefined;
|
|
108
112
|
}
|
|
109
113
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secretBackendRole.js","sourceRoot":"","sources":["../../aws/secretBackendRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;
|
|
1
|
+
{"version":3,"file":"secretBackendRole.js","sourceRoot":"","sources":["../../aws/secretBackendRole.ts"],"names":[],"mappings":"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"}
|
package/identity/getEntity.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as outputs from "../types/output";
|
|
|
14
14
|
*
|
|
15
15
|
* ## Required Vault Capabilities
|
|
16
16
|
*
|
|
17
|
-
* Use of this resource requires the `
|
|
17
|
+
* Use of this resource requires the `update` capability on `/identity/lookup/entity`.
|
|
18
18
|
*/
|
|
19
19
|
export declare function getEntity(args?: GetEntityArgs, opts?: pulumi.InvokeOptions): Promise<GetEntityResult>;
|
|
20
20
|
/**
|
|
@@ -134,7 +134,7 @@ export interface GetEntityResult {
|
|
|
134
134
|
*
|
|
135
135
|
* ## Required Vault Capabilities
|
|
136
136
|
*
|
|
137
|
-
* Use of this resource requires the `
|
|
137
|
+
* Use of this resource requires the `update` capability on `/identity/lookup/entity`.
|
|
138
138
|
*/
|
|
139
139
|
export declare function getEntityOutput(args?: GetEntityOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEntityResult>;
|
|
140
140
|
/**
|
package/identity/getEntity.js
CHANGED
|
@@ -19,7 +19,7 @@ const utilities = require("../utilities");
|
|
|
19
19
|
*
|
|
20
20
|
* ## Required Vault Capabilities
|
|
21
21
|
*
|
|
22
|
-
* Use of this resource requires the `
|
|
22
|
+
* Use of this resource requires the `update` capability on `/identity/lookup/entity`.
|
|
23
23
|
*/
|
|
24
24
|
function getEntity(args, opts) {
|
|
25
25
|
args = args || {};
|
|
@@ -48,7 +48,7 @@ exports.getEntity = getEntity;
|
|
|
48
48
|
*
|
|
49
49
|
* ## Required Vault Capabilities
|
|
50
50
|
*
|
|
51
|
-
* Use of this resource requires the `
|
|
51
|
+
* Use of this resource requires the `update` capability on `/identity/lookup/entity`.
|
|
52
52
|
*/
|
|
53
53
|
function getEntityOutput(args, opts) {
|
|
54
54
|
return pulumi.output(args).apply((a) => getEntity(a, opts));
|
package/mount.d.ts
CHANGED
|
@@ -125,7 +125,8 @@ export declare class Mount extends pulumi.CustomResource {
|
|
|
125
125
|
*/
|
|
126
126
|
readonly identityTokenKey: pulumi.Output<string | undefined>;
|
|
127
127
|
/**
|
|
128
|
-
* Specifies whether to show this mount in the UI-specific
|
|
128
|
+
* Specifies whether to show this mount in the UI-specific
|
|
129
|
+
* listing endpoint. Valid values are `unauth` or `hidden`. If not set, behaves like `hidden`.
|
|
129
130
|
*/
|
|
130
131
|
readonly listingVisibility: pulumi.Output<string | undefined>;
|
|
131
132
|
/**
|
|
@@ -229,7 +230,8 @@ export interface MountState {
|
|
|
229
230
|
*/
|
|
230
231
|
identityTokenKey?: pulumi.Input<string>;
|
|
231
232
|
/**
|
|
232
|
-
* Specifies whether to show this mount in the UI-specific
|
|
233
|
+
* Specifies whether to show this mount in the UI-specific
|
|
234
|
+
* listing endpoint. Valid values are `unauth` or `hidden`. If not set, behaves like `hidden`.
|
|
233
235
|
*/
|
|
234
236
|
listingVisibility?: pulumi.Input<string>;
|
|
235
237
|
/**
|
|
@@ -321,7 +323,8 @@ export interface MountArgs {
|
|
|
321
323
|
*/
|
|
322
324
|
identityTokenKey?: pulumi.Input<string>;
|
|
323
325
|
/**
|
|
324
|
-
* Specifies whether to show this mount in the UI-specific
|
|
326
|
+
* Specifies whether to show this mount in the UI-specific
|
|
327
|
+
* listing endpoint. Valid values are `unauth` or `hidden`. If not set, behaves like `hidden`.
|
|
325
328
|
*/
|
|
326
329
|
listingVisibility?: pulumi.Input<string>;
|
|
327
330
|
/**
|
package/mount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mount.js","sourceRoot":"","sources":["../mount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiEG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"mount.js","sourceRoot":"","sources":["../mount.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/vault",
|
|
3
|
-
"version": "6.3.0
|
|
3
|
+
"version": "6.3.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing HashiCorp Vault cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "vault",
|
|
26
|
-
"version": "6.3.0
|
|
26
|
+
"version": "6.3.0"
|
|
27
27
|
}
|
|
28
28
|
}
|