@pulumi/auth0 2.1.0 → 2.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/README.md +1 -1
- package/client.d.ts +58 -58
- package/client.js +2 -1
- package/client.js.map +1 -1
- package/clientGrant.d.ts +6 -6
- package/clientGrant.js +1 -0
- package/clientGrant.js.map +1 -1
- package/config/index.js +11 -4
- package/config/index.js.map +1 -1
- package/config/vars.d.ts +4 -4
- package/config/vars.js +26 -5
- package/config/vars.js.map +1 -1
- package/connection.d.ts +18 -18
- package/connection.js +1 -0
- package/connection.js.map +1 -1
- package/customDomain.d.ts +9 -9
- package/customDomain.js +1 -0
- package/customDomain.js.map +1 -1
- package/email.d.ts +8 -8
- package/email.js +1 -0
- package/email.js.map +1 -1
- package/emailTemplate.d.ts +16 -16
- package/emailTemplate.js +1 -0
- package/emailTemplate.js.map +1 -1
- package/globalClient.d.ts +60 -60
- package/globalClient.js +1 -0
- package/globalClient.js.map +1 -1
- package/guardian.d.ts +4 -4
- package/guardian.js +1 -0
- package/guardian.js.map +1 -1
- package/hook.d.ts +12 -12
- package/hook.js +1 -0
- package/hook.js.map +1 -1
- package/index.js +29 -21
- package/index.js.map +1 -1
- package/logStream.d.ts +8 -8
- package/logStream.js +1 -0
- package/logStream.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +3 -2
- package/package.json.dev +4 -3
- package/prompt.d.ts +4 -4
- package/prompt.js +1 -0
- package/prompt.js.map +1 -1
- package/provider.d.ts +7 -4
- package/provider.js +2 -1
- package/provider.js.map +1 -1
- package/resourceServer.d.ts +26 -26
- package/resourceServer.js +1 -0
- package/resourceServer.js.map +1 -1
- package/role.d.ts +6 -6
- package/role.js +2 -1
- package/role.js.map +1 -1
- package/rule.d.ts +8 -8
- package/rule.js +1 -0
- package/rule.js.map +1 -1
- package/ruleConfig.d.ts +4 -4
- package/ruleConfig.js +1 -0
- package/ruleConfig.js.map +1 -1
- package/tenant.d.ts +34 -34
- package/tenant.js +1 -0
- package/tenant.js.map +1 -1
- package/types/index.js +1 -0
- package/types/index.js.map +1 -1
- package/user.d.ts +36 -36
- package/user.js +1 -0
- package/user.js.map +1 -1
- package/utilities.js +1 -0
- package/utilities.js.map +1 -1
package/README.md
CHANGED
package/client.d.ts
CHANGED
|
@@ -231,124 +231,124 @@ export interface ClientState {
|
|
|
231
231
|
/**
|
|
232
232
|
* List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.
|
|
233
233
|
*/
|
|
234
|
-
|
|
234
|
+
addons?: pulumi.Input<inputs.ClientAddons>;
|
|
235
235
|
/**
|
|
236
236
|
* List(String). URLs that Auth0 may redirect to after logout.
|
|
237
237
|
*/
|
|
238
|
-
|
|
238
|
+
allowedLogoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
239
239
|
/**
|
|
240
240
|
* List(String). URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
|
|
241
241
|
*/
|
|
242
|
-
|
|
242
|
+
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
243
243
|
/**
|
|
244
244
|
* String. Type of application the client represents. Options include `native`, `spa`, `regularWeb`, `nonInteractive`, `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`.
|
|
245
245
|
*/
|
|
246
|
-
|
|
246
|
+
appType?: pulumi.Input<string>;
|
|
247
247
|
/**
|
|
248
248
|
* List(String). URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
|
|
249
249
|
*/
|
|
250
|
-
|
|
250
|
+
callbacks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
251
251
|
/**
|
|
252
252
|
* String. ID of the client.
|
|
253
253
|
* * `clientSecret`<sup>1</sup> - String. Secret for the client; keep this private.
|
|
254
254
|
*/
|
|
255
|
-
|
|
255
|
+
clientId?: pulumi.Input<string>;
|
|
256
256
|
/**
|
|
257
257
|
* Map(String)
|
|
258
258
|
*/
|
|
259
|
-
|
|
259
|
+
clientMetadata?: pulumi.Input<{
|
|
260
260
|
[key: string]: any;
|
|
261
261
|
}>;
|
|
262
|
-
|
|
262
|
+
clientSecret?: pulumi.Input<string>;
|
|
263
263
|
/**
|
|
264
264
|
* Map.
|
|
265
265
|
*/
|
|
266
|
-
|
|
266
|
+
clientSecretRotationTrigger?: pulumi.Input<{
|
|
267
267
|
[key: string]: any;
|
|
268
268
|
}>;
|
|
269
269
|
/**
|
|
270
270
|
* Boolean. Indicates whether or not the client can be used to make cross-origin authentication requests.
|
|
271
271
|
*/
|
|
272
|
-
|
|
272
|
+
crossOriginAuth?: pulumi.Input<boolean>;
|
|
273
273
|
/**
|
|
274
274
|
* String. URL for the location on your site where the cross-origin verification takes place for the cross-origin auth flow. Used when performing auth in your own domain instead of through the Auth0-hosted login page.
|
|
275
275
|
*/
|
|
276
|
-
|
|
276
|
+
crossOriginLoc?: pulumi.Input<string>;
|
|
277
277
|
/**
|
|
278
278
|
* String. Content of the custom login page.
|
|
279
279
|
*/
|
|
280
|
-
|
|
280
|
+
customLoginPage?: pulumi.Input<string>;
|
|
281
281
|
/**
|
|
282
282
|
* Boolean. Indicates whether or not a custom login page is to be used.
|
|
283
283
|
*/
|
|
284
|
-
|
|
284
|
+
customLoginPageOn?: pulumi.Input<boolean>;
|
|
285
285
|
/**
|
|
286
286
|
* String, (Max length = 140 characters). Description of the purpose of the client.
|
|
287
287
|
*/
|
|
288
|
-
|
|
288
|
+
description?: pulumi.Input<string>;
|
|
289
289
|
/**
|
|
290
290
|
* Map(String).
|
|
291
291
|
*/
|
|
292
|
-
|
|
292
|
+
encryptionKey?: pulumi.Input<{
|
|
293
293
|
[key: string]: pulumi.Input<string>;
|
|
294
294
|
}>;
|
|
295
295
|
/**
|
|
296
296
|
* String. Form template for WS-Federation protocol.
|
|
297
297
|
*/
|
|
298
|
-
|
|
298
|
+
formTemplate?: pulumi.Input<string>;
|
|
299
299
|
/**
|
|
300
300
|
* List(String). Types of grants that this client is authorized to use.
|
|
301
301
|
*/
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
303
|
+
initiateLoginUri?: pulumi.Input<string>;
|
|
304
304
|
/**
|
|
305
305
|
* Boolean. Indicates whether or not this client is a first-party client.
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
isFirstParty?: pulumi.Input<boolean>;
|
|
308
308
|
/**
|
|
309
309
|
* Boolean. Indicates whether or not the token endpoint IP header is trusted.
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
isTokenEndpointIpHeaderTrusted?: pulumi.Input<boolean>;
|
|
312
312
|
/**
|
|
313
313
|
* List(Resource). Configuration settings for the JWTs issued for this client. For details, see JWT Configuration.
|
|
314
314
|
*/
|
|
315
|
-
|
|
315
|
+
jwtConfiguration?: pulumi.Input<inputs.ClientJwtConfiguration>;
|
|
316
316
|
/**
|
|
317
317
|
* String. URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown.
|
|
318
318
|
*/
|
|
319
|
-
|
|
319
|
+
logoUri?: pulumi.Input<string>;
|
|
320
320
|
/**
|
|
321
321
|
* List(Resource). Configuration settings for mobile native applications. For details, see Mobile.
|
|
322
322
|
*/
|
|
323
|
-
|
|
323
|
+
mobile?: pulumi.Input<inputs.ClientMobile>;
|
|
324
324
|
/**
|
|
325
325
|
* String. Name of the client.
|
|
326
326
|
*/
|
|
327
|
-
|
|
327
|
+
name?: pulumi.Input<string>;
|
|
328
328
|
/**
|
|
329
329
|
* Boolean. Indicates whether or not this client will conform to strict OIDC specifications.
|
|
330
330
|
*/
|
|
331
|
-
|
|
331
|
+
oidcConformant?: pulumi.Input<boolean>;
|
|
332
332
|
/**
|
|
333
333
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
334
334
|
*/
|
|
335
|
-
|
|
335
|
+
refreshToken?: pulumi.Input<inputs.ClientRefreshToken>;
|
|
336
336
|
/**
|
|
337
337
|
* Boolean. Indicates whether or not the client should use Auth0 rather than the IdP to perform Single Sign-On (SSO). True = Use Auth0.
|
|
338
338
|
*/
|
|
339
|
-
|
|
339
|
+
sso?: pulumi.Input<boolean>;
|
|
340
340
|
/**
|
|
341
341
|
* Boolean. Indicates whether or not SSO is disabled.
|
|
342
342
|
*/
|
|
343
|
-
|
|
343
|
+
ssoDisabled?: pulumi.Input<boolean>;
|
|
344
344
|
/**
|
|
345
345
|
* String. Defines the requested authentication method for the token endpoint. Options include `none` (public client without a client secret), `clientSecretPost` (client uses HTTP POST parameters), `clientSecretBasic` (client uses HTTP Basic).
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
348
348
|
/**
|
|
349
349
|
* List(String). URLs that represent valid web origins for use with web message response mode.
|
|
350
350
|
*/
|
|
351
|
-
|
|
351
|
+
webOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
352
352
|
}
|
|
353
353
|
/**
|
|
354
354
|
* The set of arguments for constructing a Client resource.
|
|
@@ -357,116 +357,116 @@ export interface ClientArgs {
|
|
|
357
357
|
/**
|
|
358
358
|
* List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.
|
|
359
359
|
*/
|
|
360
|
-
|
|
360
|
+
addons?: pulumi.Input<inputs.ClientAddons>;
|
|
361
361
|
/**
|
|
362
362
|
* List(String). URLs that Auth0 may redirect to after logout.
|
|
363
363
|
*/
|
|
364
|
-
|
|
364
|
+
allowedLogoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
365
365
|
/**
|
|
366
366
|
* List(String). URLs that represent valid origins for cross-origin resource sharing. By default, all your callback URLs will be allowed.
|
|
367
367
|
*/
|
|
368
|
-
|
|
368
|
+
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
369
369
|
/**
|
|
370
370
|
* String. Type of application the client represents. Options include `native`, `spa`, `regularWeb`, `nonInteractive`, `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`.
|
|
371
371
|
*/
|
|
372
|
-
|
|
372
|
+
appType?: pulumi.Input<string>;
|
|
373
373
|
/**
|
|
374
374
|
* List(String). URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
|
|
375
375
|
*/
|
|
376
|
-
|
|
376
|
+
callbacks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
377
377
|
/**
|
|
378
378
|
* Map(String)
|
|
379
379
|
*/
|
|
380
|
-
|
|
380
|
+
clientMetadata?: pulumi.Input<{
|
|
381
381
|
[key: string]: any;
|
|
382
382
|
}>;
|
|
383
383
|
/**
|
|
384
384
|
* Map.
|
|
385
385
|
*/
|
|
386
|
-
|
|
386
|
+
clientSecretRotationTrigger?: pulumi.Input<{
|
|
387
387
|
[key: string]: any;
|
|
388
388
|
}>;
|
|
389
389
|
/**
|
|
390
390
|
* Boolean. Indicates whether or not the client can be used to make cross-origin authentication requests.
|
|
391
391
|
*/
|
|
392
|
-
|
|
392
|
+
crossOriginAuth?: pulumi.Input<boolean>;
|
|
393
393
|
/**
|
|
394
394
|
* String. URL for the location on your site where the cross-origin verification takes place for the cross-origin auth flow. Used when performing auth in your own domain instead of through the Auth0-hosted login page.
|
|
395
395
|
*/
|
|
396
|
-
|
|
396
|
+
crossOriginLoc?: pulumi.Input<string>;
|
|
397
397
|
/**
|
|
398
398
|
* String. Content of the custom login page.
|
|
399
399
|
*/
|
|
400
|
-
|
|
400
|
+
customLoginPage?: pulumi.Input<string>;
|
|
401
401
|
/**
|
|
402
402
|
* Boolean. Indicates whether or not a custom login page is to be used.
|
|
403
403
|
*/
|
|
404
|
-
|
|
404
|
+
customLoginPageOn?: pulumi.Input<boolean>;
|
|
405
405
|
/**
|
|
406
406
|
* String, (Max length = 140 characters). Description of the purpose of the client.
|
|
407
407
|
*/
|
|
408
|
-
|
|
408
|
+
description?: pulumi.Input<string>;
|
|
409
409
|
/**
|
|
410
410
|
* Map(String).
|
|
411
411
|
*/
|
|
412
|
-
|
|
412
|
+
encryptionKey?: pulumi.Input<{
|
|
413
413
|
[key: string]: pulumi.Input<string>;
|
|
414
414
|
}>;
|
|
415
415
|
/**
|
|
416
416
|
* String. Form template for WS-Federation protocol.
|
|
417
417
|
*/
|
|
418
|
-
|
|
418
|
+
formTemplate?: pulumi.Input<string>;
|
|
419
419
|
/**
|
|
420
420
|
* List(String). Types of grants that this client is authorized to use.
|
|
421
421
|
*/
|
|
422
|
-
|
|
423
|
-
|
|
422
|
+
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
423
|
+
initiateLoginUri?: pulumi.Input<string>;
|
|
424
424
|
/**
|
|
425
425
|
* Boolean. Indicates whether or not this client is a first-party client.
|
|
426
426
|
*/
|
|
427
|
-
|
|
427
|
+
isFirstParty?: pulumi.Input<boolean>;
|
|
428
428
|
/**
|
|
429
429
|
* Boolean. Indicates whether or not the token endpoint IP header is trusted.
|
|
430
430
|
*/
|
|
431
|
-
|
|
431
|
+
isTokenEndpointIpHeaderTrusted?: pulumi.Input<boolean>;
|
|
432
432
|
/**
|
|
433
433
|
* List(Resource). Configuration settings for the JWTs issued for this client. For details, see JWT Configuration.
|
|
434
434
|
*/
|
|
435
|
-
|
|
435
|
+
jwtConfiguration?: pulumi.Input<inputs.ClientJwtConfiguration>;
|
|
436
436
|
/**
|
|
437
437
|
* String. URL of the logo for the client. Recommended size is 150px x 150px. If none is set, the default badge for the application type will be shown.
|
|
438
438
|
*/
|
|
439
|
-
|
|
439
|
+
logoUri?: pulumi.Input<string>;
|
|
440
440
|
/**
|
|
441
441
|
* List(Resource). Configuration settings for mobile native applications. For details, see Mobile.
|
|
442
442
|
*/
|
|
443
|
-
|
|
443
|
+
mobile?: pulumi.Input<inputs.ClientMobile>;
|
|
444
444
|
/**
|
|
445
445
|
* String. Name of the client.
|
|
446
446
|
*/
|
|
447
|
-
|
|
447
|
+
name?: pulumi.Input<string>;
|
|
448
448
|
/**
|
|
449
449
|
* Boolean. Indicates whether or not this client will conform to strict OIDC specifications.
|
|
450
450
|
*/
|
|
451
|
-
|
|
451
|
+
oidcConformant?: pulumi.Input<boolean>;
|
|
452
452
|
/**
|
|
453
453
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
454
454
|
*/
|
|
455
|
-
|
|
455
|
+
refreshToken?: pulumi.Input<inputs.ClientRefreshToken>;
|
|
456
456
|
/**
|
|
457
457
|
* Boolean. Indicates whether or not the client should use Auth0 rather than the IdP to perform Single Sign-On (SSO). True = Use Auth0.
|
|
458
458
|
*/
|
|
459
|
-
|
|
459
|
+
sso?: pulumi.Input<boolean>;
|
|
460
460
|
/**
|
|
461
461
|
* Boolean. Indicates whether or not SSO is disabled.
|
|
462
462
|
*/
|
|
463
|
-
|
|
463
|
+
ssoDisabled?: pulumi.Input<boolean>;
|
|
464
464
|
/**
|
|
465
465
|
* String. Defines the requested authentication method for the token endpoint. Options include `none` (public client without a client secret), `clientSecretPost` (client uses HTTP POST parameters), `clientSecretBasic` (client uses HTTP Basic).
|
|
466
466
|
*/
|
|
467
|
-
|
|
467
|
+
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
468
468
|
/**
|
|
469
469
|
* List(String). URLs that represent valid web origins for use with web message response mode.
|
|
470
470
|
*/
|
|
471
|
-
|
|
471
|
+
webOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
472
472
|
}
|
package/client.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Client = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
|
@@ -133,7 +134,7 @@ class Client extends pulumi.CustomResource {
|
|
|
133
134
|
inputs["crossOriginLoc"] = args ? args.crossOriginLoc : undefined;
|
|
134
135
|
inputs["customLoginPage"] = args ? args.customLoginPage : undefined;
|
|
135
136
|
inputs["customLoginPageOn"] = args ? args.customLoginPageOn : undefined;
|
|
136
|
-
inputs["description"] = (_a = (args ? args.description : undefined)
|
|
137
|
+
inputs["description"] = (_a = (args ? args.description : undefined)) !== null && _a !== void 0 ? _a : "Managed by Pulumi";
|
|
137
138
|
inputs["encryptionKey"] = args ? args.encryptionKey : undefined;
|
|
138
139
|
inputs["formTemplate"] = args ? args.formTemplate : undefined;
|
|
139
140
|
inputs["grantTypes"] = args ? args.grantTypes : undefined;
|
package/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":"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"}
|
package/clientGrant.d.ts
CHANGED
|
@@ -73,15 +73,15 @@ export interface ClientGrantState {
|
|
|
73
73
|
/**
|
|
74
74
|
* String. Audience or API Identifier for this grant.
|
|
75
75
|
*/
|
|
76
|
-
|
|
76
|
+
audience?: pulumi.Input<string>;
|
|
77
77
|
/**
|
|
78
78
|
* String. ID of the client for this grant.
|
|
79
79
|
*/
|
|
80
|
-
|
|
80
|
+
clientId?: pulumi.Input<string>;
|
|
81
81
|
/**
|
|
82
82
|
* List(String). Permissions (scopes) included in this grant.
|
|
83
83
|
*/
|
|
84
|
-
|
|
84
|
+
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
85
85
|
}
|
|
86
86
|
/**
|
|
87
87
|
* The set of arguments for constructing a ClientGrant resource.
|
|
@@ -90,13 +90,13 @@ export interface ClientGrantArgs {
|
|
|
90
90
|
/**
|
|
91
91
|
* String. Audience or API Identifier for this grant.
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
audience: pulumi.Input<string>;
|
|
94
94
|
/**
|
|
95
95
|
* String. ID of the client for this grant.
|
|
96
96
|
*/
|
|
97
|
-
|
|
97
|
+
clientId: pulumi.Input<string>;
|
|
98
98
|
/**
|
|
99
99
|
* List(String). Permissions (scopes) included in this grant.
|
|
100
100
|
*/
|
|
101
|
-
|
|
101
|
+
scopes: pulumi.Input<pulumi.Input<string>[]>;
|
|
102
102
|
}
|
package/clientGrant.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.ClientGrant = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/clientGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAiDlD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SACvD;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,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,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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SACrD;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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IACxD,CAAC;IA3ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCA6EC;AA/DG,gBAAgB;AACO,wBAAY,GAAG,qCAAqC,CAAC"}
|
package/config/index.js
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
function
|
|
5
|
-
|
|
6
|
-
}
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
7
|
+
}) : (function(o, m, k, k2) {
|
|
8
|
+
if (k2 === undefined) k2 = k;
|
|
9
|
+
o[k2] = m[k];
|
|
10
|
+
}));
|
|
11
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
12
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
13
|
+
};
|
|
7
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
15
|
// Export members:
|
|
9
|
-
|
|
16
|
+
__exportStar(require("./vars"), exports);
|
|
10
17
|
//# sourceMappingURL=index.js.map
|
package/config/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../config/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;AAEjF,kBAAkB;AAClB,yCAAuB"}
|
package/config/vars.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
export declare
|
|
3
|
-
export declare
|
|
4
|
-
export declare
|
|
1
|
+
export declare const clientId: string | undefined;
|
|
2
|
+
export declare const clientSecret: string | undefined;
|
|
3
|
+
export declare const debug: boolean | undefined;
|
|
4
|
+
export declare const domain: string | undefined;
|
package/config/vars.js
CHANGED
|
@@ -4,9 +4,30 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
const pulumi = require("@pulumi/pulumi");
|
|
6
6
|
const utilities = require("../utilities");
|
|
7
|
-
|
|
8
|
-
exports
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
const __config = new pulumi.Config("auth0");
|
|
8
|
+
Object.defineProperty(exports, "clientId", {
|
|
9
|
+
get() {
|
|
10
|
+
return __config.get("clientId");
|
|
11
|
+
},
|
|
12
|
+
enumerable: true,
|
|
13
|
+
});
|
|
14
|
+
Object.defineProperty(exports, "clientSecret", {
|
|
15
|
+
get() {
|
|
16
|
+
return __config.get("clientSecret");
|
|
17
|
+
},
|
|
18
|
+
enumerable: true,
|
|
19
|
+
});
|
|
20
|
+
Object.defineProperty(exports, "debug", {
|
|
21
|
+
get() {
|
|
22
|
+
var _a;
|
|
23
|
+
return (_a = __config.getObject("debug")) !== null && _a !== void 0 ? _a : utilities.getEnvBoolean("AUTH0_DEBUG");
|
|
24
|
+
},
|
|
25
|
+
enumerable: true,
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "domain", {
|
|
28
|
+
get() {
|
|
29
|
+
return __config.get("domain");
|
|
30
|
+
},
|
|
31
|
+
enumerable: true,
|
|
32
|
+
});
|
|
12
33
|
//# sourceMappingURL=vars.js.map
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AACzC,0CAA0C;
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AACzC,0CAA0C;AAG1C,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;AAG5C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;;QACC,OAAO,MAAA,QAAQ,CAAC,SAAS,CAAU,OAAO,CAAC,mCAAS,SAAS,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;IAC/F,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
package/connection.d.ts
CHANGED
|
@@ -105,39 +105,39 @@ export interface ConnectionState {
|
|
|
105
105
|
/**
|
|
106
106
|
* Name used in login screen
|
|
107
107
|
*/
|
|
108
|
-
|
|
108
|
+
displayName?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
110
110
|
* IDs of the clients for which the connection is enabled. If not specified, no clients are enabled.
|
|
111
111
|
*/
|
|
112
|
-
|
|
112
|
+
enabledClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
113
113
|
/**
|
|
114
114
|
* Indicates whether or not the connection is domain level.
|
|
115
115
|
*/
|
|
116
|
-
|
|
116
|
+
isDomainConnection?: pulumi.Input<boolean>;
|
|
117
117
|
/**
|
|
118
118
|
* Name of the connection.
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
name?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
122
122
|
* Configuration settings for connection options. For details, see Options.
|
|
123
123
|
*/
|
|
124
|
-
|
|
124
|
+
options?: pulumi.Input<inputs.ConnectionOptions>;
|
|
125
125
|
/**
|
|
126
126
|
* Defines the realms for which the connection will be used (i.e., email domains). If not specified, the connection name is added as the realm.
|
|
127
127
|
*/
|
|
128
|
-
|
|
128
|
+
realms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
129
129
|
/**
|
|
130
130
|
* Type of the connection, which indicates the identity provider. Options include `ad`, `adfs`, `amazon`, `aol`, `apple`, `auth0`, `auth0-adldap`, `auth0-oidc`, `baidu`, `bitbucket`, `bitly`, `box`, `custom`, `daccount`, `dropbox`, `dwolla`, `email`, `evernote`, `evernote-sandbox`, `exact`, `facebook`, `fitbit`, `flickr`, `github`, `google-apps`, `google-oauth2`, `guardian`, `instagram`, `ip`, `line`, `linkedin`, `miicard`, `oauth1`, `oauth2`, `office365`, `oidc`, `paypal`, `paypal-sandbox`, `pingfederate`, `planningcenter`, `renren`, `salesforce`, `salesforce-community`, `salesforce-sandbox` `samlp`, `sharepoint`, `shopify`, `sms`, `soundcloud`, `thecity`, `thecity-sandbox`, `thirtysevensignals`, `twitter`, `untappd`, `vkontakte`, `waad`, `weibo`, `windowslive`, `wordpress`, `yahoo`, `yammer`, `yandex`.
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
strategy?: pulumi.Input<string>;
|
|
133
133
|
/**
|
|
134
134
|
* Version 1 is deprecated, use version 2.
|
|
135
135
|
*/
|
|
136
|
-
|
|
136
|
+
strategyVersion?: pulumi.Input<string>;
|
|
137
137
|
/**
|
|
138
138
|
* Validation of the minimum and maximum values allowed for a user to have as username. For details, see Validation.
|
|
139
139
|
*/
|
|
140
|
-
|
|
140
|
+
validation?: pulumi.Input<{
|
|
141
141
|
[key: string]: pulumi.Input<string>;
|
|
142
142
|
}>;
|
|
143
143
|
}
|
|
@@ -148,39 +148,39 @@ export interface ConnectionArgs {
|
|
|
148
148
|
/**
|
|
149
149
|
* Name used in login screen
|
|
150
150
|
*/
|
|
151
|
-
|
|
151
|
+
displayName?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
153
153
|
* IDs of the clients for which the connection is enabled. If not specified, no clients are enabled.
|
|
154
154
|
*/
|
|
155
|
-
|
|
155
|
+
enabledClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
156
156
|
/**
|
|
157
157
|
* Indicates whether or not the connection is domain level.
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
isDomainConnection?: pulumi.Input<boolean>;
|
|
160
160
|
/**
|
|
161
161
|
* Name of the connection.
|
|
162
162
|
*/
|
|
163
|
-
|
|
163
|
+
name?: pulumi.Input<string>;
|
|
164
164
|
/**
|
|
165
165
|
* Configuration settings for connection options. For details, see Options.
|
|
166
166
|
*/
|
|
167
|
-
|
|
167
|
+
options?: pulumi.Input<inputs.ConnectionOptions>;
|
|
168
168
|
/**
|
|
169
169
|
* Defines the realms for which the connection will be used (i.e., email domains). If not specified, the connection name is added as the realm.
|
|
170
170
|
*/
|
|
171
|
-
|
|
171
|
+
realms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
172
172
|
/**
|
|
173
173
|
* Type of the connection, which indicates the identity provider. Options include `ad`, `adfs`, `amazon`, `aol`, `apple`, `auth0`, `auth0-adldap`, `auth0-oidc`, `baidu`, `bitbucket`, `bitly`, `box`, `custom`, `daccount`, `dropbox`, `dwolla`, `email`, `evernote`, `evernote-sandbox`, `exact`, `facebook`, `fitbit`, `flickr`, `github`, `google-apps`, `google-oauth2`, `guardian`, `instagram`, `ip`, `line`, `linkedin`, `miicard`, `oauth1`, `oauth2`, `office365`, `oidc`, `paypal`, `paypal-sandbox`, `pingfederate`, `planningcenter`, `renren`, `salesforce`, `salesforce-community`, `salesforce-sandbox` `samlp`, `sharepoint`, `shopify`, `sms`, `soundcloud`, `thecity`, `thecity-sandbox`, `thirtysevensignals`, `twitter`, `untappd`, `vkontakte`, `waad`, `weibo`, `windowslive`, `wordpress`, `yahoo`, `yammer`, `yandex`.
|
|
174
174
|
*/
|
|
175
|
-
|
|
175
|
+
strategy: pulumi.Input<string>;
|
|
176
176
|
/**
|
|
177
177
|
* Version 1 is deprecated, use version 2.
|
|
178
178
|
*/
|
|
179
|
-
|
|
179
|
+
strategyVersion?: pulumi.Input<string>;
|
|
180
180
|
/**
|
|
181
181
|
* Validation of the minimum and maximum values allowed for a user to have as username. For details, see Validation.
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
validation?: pulumi.Input<{
|
|
184
184
|
[key: string]: pulumi.Input<string>;
|
|
185
185
|
}>;
|
|
186
186
|
}
|
package/connection.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Connection = void 0;
|
|
5
6
|
const pulumi = require("@pulumi/pulumi");
|
|
6
7
|
const utilities = require("./utilities");
|
|
7
8
|
/**
|
package/connection.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../connection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../connection.ts"],"names":[],"mappings":"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"}
|