@pulumi/vault 4.6.0 → 5.1.0-alpha.1638532475
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/ad/secretBackend.d.ts +0 -42
- package/ad/secretBackend.js +0 -4
- package/ad/secretBackend.js.map +1 -1
- package/approle/authBackendRole.d.ts +0 -69
- package/approle/authBackendRole.js +0 -6
- package/approle/authBackendRole.js.map +1 -1
- package/authBackend.d.ts +0 -57
- package/authBackend.js +0 -6
- package/authBackend.js.map +1 -1
- package/aws/authBackendRole.d.ts +0 -90
- package/aws/authBackendRole.js +0 -8
- package/aws/authBackendRole.js.map +1 -1
- package/azure/authBackendRole.d.ts +0 -90
- package/azure/authBackendRole.js +0 -8
- package/azure/authBackendRole.js.map +1 -1
- package/certAuthBackendRole.d.ts +0 -111
- package/certAuthBackendRole.js +0 -10
- package/certAuthBackendRole.js.map +1 -1
- package/consul/secretBackendRole.d.ts +0 -18
- package/consul/secretBackendRole.js +0 -2
- package/consul/secretBackendRole.js.map +1 -1
- package/gcp/authBackendRole.d.ts +0 -90
- package/gcp/authBackendRole.js +0 -8
- package/gcp/authBackendRole.js.map +1 -1
- package/github/authBackend.d.ts +0 -42
- package/github/authBackend.js +0 -4
- package/github/authBackend.js.map +1 -1
- package/github/team.d.ts +0 -162
- package/github/team.js +0 -18
- package/github/team.js.map +1 -1
- package/github/user.d.ts +0 -162
- package/github/user.js +0 -18
- package/github/user.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/jwt/authBackendRole.d.ts +12 -174
- package/jwt/authBackendRole.js +2 -14
- package/jwt/authBackendRole.js.map +1 -1
- package/kubernetes/authBackendConfig.d.ts +3 -3
- package/kubernetes/authBackendRole.d.ts +0 -132
- package/kubernetes/authBackendRole.js +0 -12
- package/kubernetes/authBackendRole.js.map +1 -1
- package/kubernetes/getAuthBackendRole.d.ts +0 -85
- package/kubernetes/getAuthBackendRole.js +0 -19
- package/kubernetes/getAuthBackendRole.js.map +1 -1
- package/namespace.d.ts +36 -0
- package/namespace.js +36 -0
- package/namespace.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/pkisecret/index.d.ts +0 -1
- package/pkisecret/index.js +0 -5
- package/pkisecret/index.js.map +1 -1
- package/pkisecret/secretBackendConfigUrls.d.ts +1 -6
- package/pkisecret/secretBackendConfigUrls.js +1 -6
- package/pkisecret/secretBackendConfigUrls.js.map +1 -1
- package/pkisecret/secretBackendRole.d.ts +2 -1
- package/pkisecret/secretBackendRole.js +2 -1
- package/pkisecret/secretBackendRole.js.map +1 -1
- package/pkisecret/secretBackendRootSignIntermediate.d.ts +1 -1
- package/pkisecret/secretBackendRootSignIntermediate.js +1 -1
- package/raftAutopilot.d.ts +154 -0
- package/raftAutopilot.js +83 -0
- package/raftAutopilot.js.map +1 -0
- package/token.d.ts +0 -20
- package/token.js +0 -4
- package/token.js.map +1 -1
- package/tokenauth/authBackendRole.d.ts +1 -70
- package/tokenauth/authBackendRole.js +1 -7
- package/tokenauth/authBackendRole.js.map +1 -1
- package/transform/template.d.ts +36 -0
- package/transform/template.js +4 -0
- package/transform/template.js.map +1 -1
- package/pkisecret/secretBackend.d.ts +0 -109
- package/pkisecret/secretBackend.js +0 -85
- package/pkisecret/secretBackend.js.map +0 -1
package/ad/secretBackend.d.ts
CHANGED
|
@@ -77,13 +77,6 @@ export declare class SecretBackend extends pulumi.CustomResource {
|
|
|
77
77
|
* Use anonymous bind to discover the bind Distinguished Name of a user.
|
|
78
78
|
*/
|
|
79
79
|
readonly discoverdn: pulumi.Output<boolean | undefined>;
|
|
80
|
-
/**
|
|
81
|
-
* Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix". This
|
|
82
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
83
|
-
*
|
|
84
|
-
* @deprecated Formatter is deprecated and password_policy should be used with Vault >= 1.5.
|
|
85
|
-
*/
|
|
86
|
-
readonly formatter: pulumi.Output<string>;
|
|
87
80
|
/**
|
|
88
81
|
* LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
|
|
89
82
|
* user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
|
|
@@ -108,13 +101,6 @@ export declare class SecretBackend extends pulumi.CustomResource {
|
|
|
108
101
|
* shows a later rotation, it should be considered out-of-band
|
|
109
102
|
*/
|
|
110
103
|
readonly lastRotationTolerance: pulumi.Output<number>;
|
|
111
|
-
/**
|
|
112
|
-
* The desired length of passwords that Vault generates. This
|
|
113
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
114
|
-
*
|
|
115
|
-
* @deprecated Length is deprecated and password_policy should be used with Vault >= 1.5.
|
|
116
|
-
*/
|
|
117
|
-
readonly length: pulumi.Output<number>;
|
|
118
104
|
/**
|
|
119
105
|
* Mark the secrets engine as local-only. Local engines are not replicated or removed by
|
|
120
106
|
* replication.Tolerance duration to use when checking the last rotation time.
|
|
@@ -252,13 +238,6 @@ export interface SecretBackendState {
|
|
|
252
238
|
* Use anonymous bind to discover the bind Distinguished Name of a user.
|
|
253
239
|
*/
|
|
254
240
|
discoverdn?: pulumi.Input<boolean>;
|
|
255
|
-
/**
|
|
256
|
-
* Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix". This
|
|
257
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
258
|
-
*
|
|
259
|
-
* @deprecated Formatter is deprecated and password_policy should be used with Vault >= 1.5.
|
|
260
|
-
*/
|
|
261
|
-
formatter?: pulumi.Input<string>;
|
|
262
241
|
/**
|
|
263
242
|
* LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
|
|
264
243
|
* user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
|
|
@@ -283,13 +262,6 @@ export interface SecretBackendState {
|
|
|
283
262
|
* shows a later rotation, it should be considered out-of-band
|
|
284
263
|
*/
|
|
285
264
|
lastRotationTolerance?: pulumi.Input<number>;
|
|
286
|
-
/**
|
|
287
|
-
* The desired length of passwords that Vault generates. This
|
|
288
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
289
|
-
*
|
|
290
|
-
* @deprecated Length is deprecated and password_policy should be used with Vault >= 1.5.
|
|
291
|
-
*/
|
|
292
|
-
length?: pulumi.Input<number>;
|
|
293
265
|
/**
|
|
294
266
|
* Mark the secrets engine as local-only. Local engines are not replicated or removed by
|
|
295
267
|
* replication.Tolerance duration to use when checking the last rotation time.
|
|
@@ -419,13 +391,6 @@ export interface SecretBackendArgs {
|
|
|
419
391
|
* Use anonymous bind to discover the bind Distinguished Name of a user.
|
|
420
392
|
*/
|
|
421
393
|
discoverdn?: pulumi.Input<boolean>;
|
|
422
|
-
/**
|
|
423
|
-
* Text to insert the password into, ex. "customPrefix{{PASSWORD}}customSuffix". This
|
|
424
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
425
|
-
*
|
|
426
|
-
* @deprecated Formatter is deprecated and password_policy should be used with Vault >= 1.5.
|
|
427
|
-
*/
|
|
428
|
-
formatter?: pulumi.Input<string>;
|
|
429
394
|
/**
|
|
430
395
|
* LDAP attribute to follow on objects returned by <groupfilter> in order to enumerate
|
|
431
396
|
* user group membership. Examples: `cn` or `memberOf`, etc. Defaults to `cn`.
|
|
@@ -450,13 +415,6 @@ export interface SecretBackendArgs {
|
|
|
450
415
|
* shows a later rotation, it should be considered out-of-band
|
|
451
416
|
*/
|
|
452
417
|
lastRotationTolerance?: pulumi.Input<number>;
|
|
453
|
-
/**
|
|
454
|
-
* The desired length of passwords that Vault generates. This
|
|
455
|
-
* setting is deprecated and should instead use `passwordPolicy`.
|
|
456
|
-
*
|
|
457
|
-
* @deprecated Length is deprecated and password_policy should be used with Vault >= 1.5.
|
|
458
|
-
*/
|
|
459
|
-
length?: pulumi.Input<number>;
|
|
460
418
|
/**
|
|
461
419
|
* Mark the secrets engine as local-only. Local engines are not replicated or removed by
|
|
462
420
|
* replication.Tolerance duration to use when checking the last rotation time.
|
package/ad/secretBackend.js
CHANGED
|
@@ -32,13 +32,11 @@ class SecretBackend extends pulumi.CustomResource {
|
|
|
32
32
|
inputs["denyNullBind"] = state ? state.denyNullBind : undefined;
|
|
33
33
|
inputs["description"] = state ? state.description : undefined;
|
|
34
34
|
inputs["discoverdn"] = state ? state.discoverdn : undefined;
|
|
35
|
-
inputs["formatter"] = state ? state.formatter : undefined;
|
|
36
35
|
inputs["groupattr"] = state ? state.groupattr : undefined;
|
|
37
36
|
inputs["groupdn"] = state ? state.groupdn : undefined;
|
|
38
37
|
inputs["groupfilter"] = state ? state.groupfilter : undefined;
|
|
39
38
|
inputs["insecureTls"] = state ? state.insecureTls : undefined;
|
|
40
39
|
inputs["lastRotationTolerance"] = state ? state.lastRotationTolerance : undefined;
|
|
41
|
-
inputs["length"] = state ? state.length : undefined;
|
|
42
40
|
inputs["local"] = state ? state.local : undefined;
|
|
43
41
|
inputs["maxLeaseTtlSeconds"] = state ? state.maxLeaseTtlSeconds : undefined;
|
|
44
42
|
inputs["maxTtl"] = state ? state.maxTtl : undefined;
|
|
@@ -75,13 +73,11 @@ class SecretBackend extends pulumi.CustomResource {
|
|
|
75
73
|
inputs["denyNullBind"] = args ? args.denyNullBind : undefined;
|
|
76
74
|
inputs["description"] = args ? args.description : undefined;
|
|
77
75
|
inputs["discoverdn"] = args ? args.discoverdn : undefined;
|
|
78
|
-
inputs["formatter"] = args ? args.formatter : undefined;
|
|
79
76
|
inputs["groupattr"] = args ? args.groupattr : undefined;
|
|
80
77
|
inputs["groupdn"] = args ? args.groupdn : undefined;
|
|
81
78
|
inputs["groupfilter"] = args ? args.groupfilter : undefined;
|
|
82
79
|
inputs["insecureTls"] = args ? args.insecureTls : undefined;
|
|
83
80
|
inputs["lastRotationTolerance"] = args ? args.lastRotationTolerance : undefined;
|
|
84
|
-
inputs["length"] = args ? args.length : undefined;
|
|
85
81
|
inputs["local"] = args ? args.local : undefined;
|
|
86
82
|
inputs["maxLeaseTtlSeconds"] = args ? args.maxLeaseTtlSeconds : undefined;
|
|
87
83
|
inputs["maxTtl"] = args ? args.maxTtl : undefined;
|
package/ad/secretBackend.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"secretBackend.js","sourceRoot":"","sources":["../../ad/secretBackend.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"secretBackend.js","sourceRoot":"","sources":["../../ad/secretBackend.ts"],"names":[],"mappings":"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"}
|
|
@@ -56,29 +56,6 @@ export declare class AuthBackendRole extends pulumi.CustomResource {
|
|
|
56
56
|
* presented when logging in using this AppRole. Defaults to `true`.
|
|
57
57
|
*/
|
|
58
58
|
readonly bindSecretId: pulumi.Output<boolean | undefined>;
|
|
59
|
-
/**
|
|
60
|
-
* If set,
|
|
61
|
-
* specifies blocks of IP addresses which can perform the login operation.
|
|
62
|
-
*
|
|
63
|
-
* @deprecated use `secret_id_bound_cidrs` instead
|
|
64
|
-
*/
|
|
65
|
-
readonly boundCidrLists: pulumi.Output<string[] | undefined>;
|
|
66
|
-
/**
|
|
67
|
-
* If set, indicates that the
|
|
68
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
69
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
70
|
-
* value of this field. Specified in seconds.
|
|
71
|
-
*
|
|
72
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
73
|
-
*/
|
|
74
|
-
readonly period: pulumi.Output<number | undefined>;
|
|
75
|
-
/**
|
|
76
|
-
* An array of strings
|
|
77
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
78
|
-
*
|
|
79
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
80
|
-
*/
|
|
81
|
-
readonly policies: pulumi.Output<string[] | undefined>;
|
|
82
59
|
/**
|
|
83
60
|
* The RoleID of this role. If not specified, one will be
|
|
84
61
|
* auto-generated.
|
|
@@ -181,29 +158,6 @@ export interface AuthBackendRoleState {
|
|
|
181
158
|
* presented when logging in using this AppRole. Defaults to `true`.
|
|
182
159
|
*/
|
|
183
160
|
bindSecretId?: pulumi.Input<boolean>;
|
|
184
|
-
/**
|
|
185
|
-
* If set,
|
|
186
|
-
* specifies blocks of IP addresses which can perform the login operation.
|
|
187
|
-
*
|
|
188
|
-
* @deprecated use `secret_id_bound_cidrs` instead
|
|
189
|
-
*/
|
|
190
|
-
boundCidrLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
191
|
-
/**
|
|
192
|
-
* If set, indicates that the
|
|
193
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
194
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
195
|
-
* value of this field. Specified in seconds.
|
|
196
|
-
*
|
|
197
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
198
|
-
*/
|
|
199
|
-
period?: pulumi.Input<number>;
|
|
200
|
-
/**
|
|
201
|
-
* An array of strings
|
|
202
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
203
|
-
*
|
|
204
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
205
|
-
*/
|
|
206
|
-
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
207
161
|
/**
|
|
208
162
|
* The RoleID of this role. If not specified, one will be
|
|
209
163
|
* auto-generated.
|
|
@@ -298,29 +252,6 @@ export interface AuthBackendRoleArgs {
|
|
|
298
252
|
* presented when logging in using this AppRole. Defaults to `true`.
|
|
299
253
|
*/
|
|
300
254
|
bindSecretId?: pulumi.Input<boolean>;
|
|
301
|
-
/**
|
|
302
|
-
* If set,
|
|
303
|
-
* specifies blocks of IP addresses which can perform the login operation.
|
|
304
|
-
*
|
|
305
|
-
* @deprecated use `secret_id_bound_cidrs` instead
|
|
306
|
-
*/
|
|
307
|
-
boundCidrLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
308
|
-
/**
|
|
309
|
-
* If set, indicates that the
|
|
310
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
311
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
312
|
-
* value of this field. Specified in seconds.
|
|
313
|
-
*
|
|
314
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
315
|
-
*/
|
|
316
|
-
period?: pulumi.Input<number>;
|
|
317
|
-
/**
|
|
318
|
-
* An array of strings
|
|
319
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
320
|
-
*
|
|
321
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
322
|
-
*/
|
|
323
|
-
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
324
255
|
/**
|
|
325
256
|
* The RoleID of this role. If not specified, one will be
|
|
326
257
|
* auto-generated.
|
|
@@ -44,9 +44,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
44
44
|
const state = argsOrState;
|
|
45
45
|
inputs["backend"] = state ? state.backend : undefined;
|
|
46
46
|
inputs["bindSecretId"] = state ? state.bindSecretId : undefined;
|
|
47
|
-
inputs["boundCidrLists"] = state ? state.boundCidrLists : undefined;
|
|
48
|
-
inputs["period"] = state ? state.period : undefined;
|
|
49
|
-
inputs["policies"] = state ? state.policies : undefined;
|
|
50
47
|
inputs["roleId"] = state ? state.roleId : undefined;
|
|
51
48
|
inputs["roleName"] = state ? state.roleName : undefined;
|
|
52
49
|
inputs["secretIdBoundCidrs"] = state ? state.secretIdBoundCidrs : undefined;
|
|
@@ -69,9 +66,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
69
66
|
}
|
|
70
67
|
inputs["backend"] = args ? args.backend : undefined;
|
|
71
68
|
inputs["bindSecretId"] = args ? args.bindSecretId : undefined;
|
|
72
|
-
inputs["boundCidrLists"] = args ? args.boundCidrLists : undefined;
|
|
73
|
-
inputs["period"] = args ? args.period : undefined;
|
|
74
|
-
inputs["policies"] = args ? args.policies : undefined;
|
|
75
69
|
inputs["roleId"] = args ? args.roleId : undefined;
|
|
76
70
|
inputs["roleName"] = args ? args.roleName : undefined;
|
|
77
71
|
inputs["secretIdBoundCidrs"] = args ? args.secretIdBoundCidrs : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authBackendRole.js","sourceRoot":"","sources":["../../approle/authBackendRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"authBackendRole.js","sourceRoot":"","sources":["../../approle/authBackendRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IA8HtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,MAAM,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,MAAM,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,MAAM,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,MAAM,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,MAAM,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,MAAM,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;IA5KD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;;AA1BL,0CA8KC;AAhKG,gBAAgB;AACO,4BAAY,GAAG,+CAA+C,CAAC"}
|
package/authBackend.d.ts
CHANGED
|
@@ -44,33 +44,14 @@ export declare class AuthBackend extends pulumi.CustomResource {
|
|
|
44
44
|
* The accessor for this auth method
|
|
45
45
|
*/
|
|
46
46
|
readonly accessor: pulumi.Output<string>;
|
|
47
|
-
/**
|
|
48
|
-
* (Optional; Deprecated, use `tune.default_lease_ttl` if you are using Vault provider version >= 1.8) The default lease duration in seconds.
|
|
49
|
-
*
|
|
50
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
51
|
-
*/
|
|
52
|
-
readonly defaultLeaseTtlSeconds: pulumi.Output<number>;
|
|
53
47
|
/**
|
|
54
48
|
* A description of the auth method
|
|
55
49
|
*/
|
|
56
50
|
readonly description: pulumi.Output<string | undefined>;
|
|
57
|
-
/**
|
|
58
|
-
* Specifies whether to show this mount in
|
|
59
|
-
* the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
|
|
60
|
-
*
|
|
61
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
62
|
-
*/
|
|
63
|
-
readonly listingVisibility: pulumi.Output<string>;
|
|
64
51
|
/**
|
|
65
52
|
* Specifies if the auth method is local only.
|
|
66
53
|
*/
|
|
67
54
|
readonly local: pulumi.Output<boolean | undefined>;
|
|
68
|
-
/**
|
|
69
|
-
* (Optional; Deprecated, use `tune.max_lease_ttl` if you are using Vault provider version >= 1.8) The maximum lease duration in seconds.
|
|
70
|
-
*
|
|
71
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
72
|
-
*/
|
|
73
|
-
readonly maxLeaseTtlSeconds: pulumi.Output<number>;
|
|
74
55
|
/**
|
|
75
56
|
* The path to mount the auth method — this defaults to the name of the type
|
|
76
57
|
*/
|
|
@@ -100,33 +81,14 @@ export interface AuthBackendState {
|
|
|
100
81
|
* The accessor for this auth method
|
|
101
82
|
*/
|
|
102
83
|
accessor?: pulumi.Input<string>;
|
|
103
|
-
/**
|
|
104
|
-
* (Optional; Deprecated, use `tune.default_lease_ttl` if you are using Vault provider version >= 1.8) The default lease duration in seconds.
|
|
105
|
-
*
|
|
106
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
107
|
-
*/
|
|
108
|
-
defaultLeaseTtlSeconds?: pulumi.Input<number>;
|
|
109
84
|
/**
|
|
110
85
|
* A description of the auth method
|
|
111
86
|
*/
|
|
112
87
|
description?: pulumi.Input<string>;
|
|
113
|
-
/**
|
|
114
|
-
* Specifies whether to show this mount in
|
|
115
|
-
* the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
|
|
116
|
-
*
|
|
117
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
118
|
-
*/
|
|
119
|
-
listingVisibility?: pulumi.Input<string>;
|
|
120
88
|
/**
|
|
121
89
|
* Specifies if the auth method is local only.
|
|
122
90
|
*/
|
|
123
91
|
local?: pulumi.Input<boolean>;
|
|
124
|
-
/**
|
|
125
|
-
* (Optional; Deprecated, use `tune.max_lease_ttl` if you are using Vault provider version >= 1.8) The maximum lease duration in seconds.
|
|
126
|
-
*
|
|
127
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
128
|
-
*/
|
|
129
|
-
maxLeaseTtlSeconds?: pulumi.Input<number>;
|
|
130
92
|
/**
|
|
131
93
|
* The path to mount the auth method — this defaults to the name of the type
|
|
132
94
|
*/
|
|
@@ -144,33 +106,14 @@ export interface AuthBackendState {
|
|
|
144
106
|
* The set of arguments for constructing a AuthBackend resource.
|
|
145
107
|
*/
|
|
146
108
|
export interface AuthBackendArgs {
|
|
147
|
-
/**
|
|
148
|
-
* (Optional; Deprecated, use `tune.default_lease_ttl` if you are using Vault provider version >= 1.8) The default lease duration in seconds.
|
|
149
|
-
*
|
|
150
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
151
|
-
*/
|
|
152
|
-
defaultLeaseTtlSeconds?: pulumi.Input<number>;
|
|
153
109
|
/**
|
|
154
110
|
* A description of the auth method
|
|
155
111
|
*/
|
|
156
112
|
description?: pulumi.Input<string>;
|
|
157
|
-
/**
|
|
158
|
-
* Specifies whether to show this mount in
|
|
159
|
-
* the UI-specific listing endpoint. Valid values are "unauth" or "hidden".
|
|
160
|
-
*
|
|
161
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
162
|
-
*/
|
|
163
|
-
listingVisibility?: pulumi.Input<string>;
|
|
164
113
|
/**
|
|
165
114
|
* Specifies if the auth method is local only.
|
|
166
115
|
*/
|
|
167
116
|
local?: pulumi.Input<boolean>;
|
|
168
|
-
/**
|
|
169
|
-
* (Optional; Deprecated, use `tune.max_lease_ttl` if you are using Vault provider version >= 1.8) The maximum lease duration in seconds.
|
|
170
|
-
*
|
|
171
|
-
* @deprecated Use the tune configuration block to avoid forcing creation of new resource on an update
|
|
172
|
-
*/
|
|
173
|
-
maxLeaseTtlSeconds?: pulumi.Input<number>;
|
|
174
117
|
/**
|
|
175
118
|
* The path to mount the auth method — this defaults to the name of the type
|
|
176
119
|
*/
|
package/authBackend.js
CHANGED
|
@@ -36,11 +36,8 @@ class AuthBackend extends pulumi.CustomResource {
|
|
|
36
36
|
if (opts.id) {
|
|
37
37
|
const state = argsOrState;
|
|
38
38
|
inputs["accessor"] = state ? state.accessor : undefined;
|
|
39
|
-
inputs["defaultLeaseTtlSeconds"] = state ? state.defaultLeaseTtlSeconds : undefined;
|
|
40
39
|
inputs["description"] = state ? state.description : undefined;
|
|
41
|
-
inputs["listingVisibility"] = state ? state.listingVisibility : undefined;
|
|
42
40
|
inputs["local"] = state ? state.local : undefined;
|
|
43
|
-
inputs["maxLeaseTtlSeconds"] = state ? state.maxLeaseTtlSeconds : undefined;
|
|
44
41
|
inputs["path"] = state ? state.path : undefined;
|
|
45
42
|
inputs["tune"] = state ? state.tune : undefined;
|
|
46
43
|
inputs["type"] = state ? state.type : undefined;
|
|
@@ -50,11 +47,8 @@ class AuthBackend extends pulumi.CustomResource {
|
|
|
50
47
|
if ((!args || args.type === undefined) && !opts.urn) {
|
|
51
48
|
throw new Error("Missing required property 'type'");
|
|
52
49
|
}
|
|
53
|
-
inputs["defaultLeaseTtlSeconds"] = args ? args.defaultLeaseTtlSeconds : undefined;
|
|
54
50
|
inputs["description"] = args ? args.description : undefined;
|
|
55
|
-
inputs["listingVisibility"] = args ? args.listingVisibility : undefined;
|
|
56
51
|
inputs["local"] = args ? args.local : undefined;
|
|
57
|
-
inputs["maxLeaseTtlSeconds"] = args ? args.maxLeaseTtlSeconds : undefined;
|
|
58
52
|
inputs["path"] = args ? args.path : undefined;
|
|
59
53
|
inputs["tune"] = args ? args.tune : undefined;
|
|
60
54
|
inputs["type"] = args ? args.type : undefined;
|
package/authBackend.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authBackend.js","sourceRoot":"","sources":["../authBackend.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"authBackend.js","sourceRoot":"","sources":["../authBackend.ts"],"names":[],"mappings":"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"}
|
package/aws/authBackendRole.d.ts
CHANGED
|
@@ -157,29 +157,6 @@ export declare class AuthBackendRole extends pulumi.CustomResource {
|
|
|
157
157
|
* This only applies when `authType` is set to `iam`.
|
|
158
158
|
*/
|
|
159
159
|
readonly inferredEntityType: pulumi.Output<string | undefined>;
|
|
160
|
-
/**
|
|
161
|
-
* The maximum allowed lifetime of tokens
|
|
162
|
-
* issued using this role, provided as a number of seconds.
|
|
163
|
-
*
|
|
164
|
-
* @deprecated use `token_max_ttl` instead if you are running Vault >= 1.2
|
|
165
|
-
*/
|
|
166
|
-
readonly maxTtl: pulumi.Output<number | undefined>;
|
|
167
|
-
/**
|
|
168
|
-
* If set, indicates that the
|
|
169
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
170
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
171
|
-
* value of this field. Specified in seconds.
|
|
172
|
-
*
|
|
173
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
174
|
-
*/
|
|
175
|
-
readonly period: pulumi.Output<number | undefined>;
|
|
176
|
-
/**
|
|
177
|
-
* An array of strings
|
|
178
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
179
|
-
*
|
|
180
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
181
|
-
*/
|
|
182
|
-
readonly policies: pulumi.Output<string[] | undefined>;
|
|
183
160
|
/**
|
|
184
161
|
* Only valid when
|
|
185
162
|
* `authType` is `iam`. If set to `true`, the `boundIamPrincipalArns` are
|
|
@@ -259,13 +236,6 @@ export declare class AuthBackendRole extends pulumi.CustomResource {
|
|
|
259
236
|
* requests a different type at generation time.
|
|
260
237
|
*/
|
|
261
238
|
readonly tokenType: pulumi.Output<string | undefined>;
|
|
262
|
-
/**
|
|
263
|
-
* The TTL period of tokens issued
|
|
264
|
-
* using this role, provided as a number of seconds.
|
|
265
|
-
*
|
|
266
|
-
* @deprecated use `token_ttl` instead if you are running Vault >= 1.2
|
|
267
|
-
*/
|
|
268
|
-
readonly ttl: pulumi.Output<number | undefined>;
|
|
269
239
|
/**
|
|
270
240
|
* Create a AuthBackendRole resource with the given unique name, arguments, and options.
|
|
271
241
|
*
|
|
@@ -377,29 +347,6 @@ export interface AuthBackendRoleState {
|
|
|
377
347
|
* This only applies when `authType` is set to `iam`.
|
|
378
348
|
*/
|
|
379
349
|
inferredEntityType?: pulumi.Input<string>;
|
|
380
|
-
/**
|
|
381
|
-
* The maximum allowed lifetime of tokens
|
|
382
|
-
* issued using this role, provided as a number of seconds.
|
|
383
|
-
*
|
|
384
|
-
* @deprecated use `token_max_ttl` instead if you are running Vault >= 1.2
|
|
385
|
-
*/
|
|
386
|
-
maxTtl?: pulumi.Input<number>;
|
|
387
|
-
/**
|
|
388
|
-
* If set, indicates that the
|
|
389
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
390
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
391
|
-
* value of this field. Specified in seconds.
|
|
392
|
-
*
|
|
393
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
394
|
-
*/
|
|
395
|
-
period?: pulumi.Input<number>;
|
|
396
|
-
/**
|
|
397
|
-
* An array of strings
|
|
398
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
399
|
-
*
|
|
400
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
401
|
-
*/
|
|
402
|
-
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
403
350
|
/**
|
|
404
351
|
* Only valid when
|
|
405
352
|
* `authType` is `iam`. If set to `true`, the `boundIamPrincipalArns` are
|
|
@@ -479,13 +426,6 @@ export interface AuthBackendRoleState {
|
|
|
479
426
|
* requests a different type at generation time.
|
|
480
427
|
*/
|
|
481
428
|
tokenType?: pulumi.Input<string>;
|
|
482
|
-
/**
|
|
483
|
-
* The TTL period of tokens issued
|
|
484
|
-
* using this role, provided as a number of seconds.
|
|
485
|
-
*
|
|
486
|
-
* @deprecated use `token_ttl` instead if you are running Vault >= 1.2
|
|
487
|
-
*/
|
|
488
|
-
ttl?: pulumi.Input<number>;
|
|
489
429
|
}
|
|
490
430
|
/**
|
|
491
431
|
* The set of arguments for constructing a AuthBackendRole resource.
|
|
@@ -589,29 +529,6 @@ export interface AuthBackendRoleArgs {
|
|
|
589
529
|
* This only applies when `authType` is set to `iam`.
|
|
590
530
|
*/
|
|
591
531
|
inferredEntityType?: pulumi.Input<string>;
|
|
592
|
-
/**
|
|
593
|
-
* The maximum allowed lifetime of tokens
|
|
594
|
-
* issued using this role, provided as a number of seconds.
|
|
595
|
-
*
|
|
596
|
-
* @deprecated use `token_max_ttl` instead if you are running Vault >= 1.2
|
|
597
|
-
*/
|
|
598
|
-
maxTtl?: pulumi.Input<number>;
|
|
599
|
-
/**
|
|
600
|
-
* If set, indicates that the
|
|
601
|
-
* token generated using this role should never expire. The token should be renewed within the
|
|
602
|
-
* duration specified by this value. At each renewal, the token's TTL will be set to the
|
|
603
|
-
* value of this field. Specified in seconds.
|
|
604
|
-
*
|
|
605
|
-
* @deprecated use `token_period` instead if you are running Vault >= 1.2
|
|
606
|
-
*/
|
|
607
|
-
period?: pulumi.Input<number>;
|
|
608
|
-
/**
|
|
609
|
-
* An array of strings
|
|
610
|
-
* specifying the policies to be set on tokens issued using this role.
|
|
611
|
-
*
|
|
612
|
-
* @deprecated use `token_policies` instead if you are running Vault >= 1.2
|
|
613
|
-
*/
|
|
614
|
-
policies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
615
532
|
/**
|
|
616
533
|
* Only valid when
|
|
617
534
|
* `authType` is `iam`. If set to `true`, the `boundIamPrincipalArns` are
|
|
@@ -691,11 +608,4 @@ export interface AuthBackendRoleArgs {
|
|
|
691
608
|
* requests a different type at generation time.
|
|
692
609
|
*/
|
|
693
610
|
tokenType?: pulumi.Input<string>;
|
|
694
|
-
/**
|
|
695
|
-
* The TTL period of tokens issued
|
|
696
|
-
* using this role, provided as a number of seconds.
|
|
697
|
-
*
|
|
698
|
-
* @deprecated use `token_ttl` instead if you are running Vault >= 1.2
|
|
699
|
-
*/
|
|
700
|
-
ttl?: pulumi.Input<number>;
|
|
701
611
|
}
|
package/aws/authBackendRole.js
CHANGED
|
@@ -70,9 +70,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
70
70
|
inputs["disallowReauthentication"] = state ? state.disallowReauthentication : undefined;
|
|
71
71
|
inputs["inferredAwsRegion"] = state ? state.inferredAwsRegion : undefined;
|
|
72
72
|
inputs["inferredEntityType"] = state ? state.inferredEntityType : undefined;
|
|
73
|
-
inputs["maxTtl"] = state ? state.maxTtl : undefined;
|
|
74
|
-
inputs["period"] = state ? state.period : undefined;
|
|
75
|
-
inputs["policies"] = state ? state.policies : undefined;
|
|
76
73
|
inputs["resolveAwsUniqueIds"] = state ? state.resolveAwsUniqueIds : undefined;
|
|
77
74
|
inputs["role"] = state ? state.role : undefined;
|
|
78
75
|
inputs["roleTag"] = state ? state.roleTag : undefined;
|
|
@@ -85,7 +82,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
85
82
|
inputs["tokenPolicies"] = state ? state.tokenPolicies : undefined;
|
|
86
83
|
inputs["tokenTtl"] = state ? state.tokenTtl : undefined;
|
|
87
84
|
inputs["tokenType"] = state ? state.tokenType : undefined;
|
|
88
|
-
inputs["ttl"] = state ? state.ttl : undefined;
|
|
89
85
|
}
|
|
90
86
|
else {
|
|
91
87
|
const args = argsOrState;
|
|
@@ -107,9 +103,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
107
103
|
inputs["disallowReauthentication"] = args ? args.disallowReauthentication : undefined;
|
|
108
104
|
inputs["inferredAwsRegion"] = args ? args.inferredAwsRegion : undefined;
|
|
109
105
|
inputs["inferredEntityType"] = args ? args.inferredEntityType : undefined;
|
|
110
|
-
inputs["maxTtl"] = args ? args.maxTtl : undefined;
|
|
111
|
-
inputs["period"] = args ? args.period : undefined;
|
|
112
|
-
inputs["policies"] = args ? args.policies : undefined;
|
|
113
106
|
inputs["resolveAwsUniqueIds"] = args ? args.resolveAwsUniqueIds : undefined;
|
|
114
107
|
inputs["role"] = args ? args.role : undefined;
|
|
115
108
|
inputs["roleTag"] = args ? args.roleTag : undefined;
|
|
@@ -122,7 +115,6 @@ class AuthBackendRole extends pulumi.CustomResource {
|
|
|
122
115
|
inputs["tokenPolicies"] = args ? args.tokenPolicies : undefined;
|
|
123
116
|
inputs["tokenTtl"] = args ? args.tokenTtl : undefined;
|
|
124
117
|
inputs["tokenType"] = args ? args.tokenType : undefined;
|
|
125
|
-
inputs["ttl"] = args ? args.ttl : undefined;
|
|
126
118
|
}
|
|
127
119
|
if (!opts.version) {
|
|
128
120
|
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authBackendRole.js","sourceRoot":"","sources":["../../aws/authBackendRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"authBackendRole.js","sourceRoot":"","sources":["../../aws/authBackendRole.ts"],"names":[],"mappings":"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"}
|