@pulumi/auth0 2.22.0 → 2.23.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/branding.d.ts +2 -2
- package/client.d.ts +112 -19
- package/client.js +73 -0
- package/client.js.map +1 -1
- package/connection.d.ts +6 -6
- package/connection.js +1 -1
- package/getClient.d.ts +2 -5
- package/getClient.js.map +1 -1
- package/getConnection.d.ts +1 -1
- package/getGlobalClient.d.ts +2 -7
- package/getGlobalClient.js +0 -2
- package/getGlobalClient.js.map +1 -1
- package/getRole.d.ts +0 -3
- package/getRole.js.map +1 -1
- package/getTenant.d.ts +0 -12
- package/globalClient.d.ts +42 -23
- package/globalClient.js +0 -2
- package/globalClient.js.map +1 -1
- package/hook.d.ts +3 -1
- package/hook.js +3 -1
- package/hook.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/organizationMember.d.ts +18 -6
- package/organizationMember.js.map +1 -1
- package/package.json +2 -2
- package/pages.d.ts +124 -0
- package/pages.js +93 -0
- package/pages.js.map +1 -0
- package/resourceServer.d.ts +18 -6
- package/resourceServer.js.map +1 -1
- package/role.d.ts +15 -6
- package/role.js.map +1 -1
- package/rule.d.ts +2 -0
- package/rule.js +2 -0
- package/rule.js.map +1 -1
- package/tenant.d.ts +72 -12
- package/tenant.js.map +1 -1
- package/triggerBinding.d.ts +0 -4
- package/triggerBinding.js +0 -4
- package/triggerBinding.js.map +1 -1
- package/types/input.d.ts +48 -4
- package/types/output.d.ts +47 -6
- package/user.d.ts +21 -8
- package/user.js.map +1 -1
package/branding.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare class Branding extends pulumi.CustomResource {
|
|
|
50
50
|
/**
|
|
51
51
|
* Configuration settings for colors for branding.
|
|
52
52
|
*/
|
|
53
|
-
readonly colors: pulumi.Output<outputs.BrandingColors
|
|
53
|
+
readonly colors: pulumi.Output<outputs.BrandingColors>;
|
|
54
54
|
/**
|
|
55
55
|
* URL for the favicon.
|
|
56
56
|
*/
|
|
@@ -58,7 +58,7 @@ export declare class Branding extends pulumi.CustomResource {
|
|
|
58
58
|
/**
|
|
59
59
|
* Configuration settings to customize the font.
|
|
60
60
|
*/
|
|
61
|
-
readonly font: pulumi.Output<outputs.BrandingFont
|
|
61
|
+
readonly font: pulumi.Output<outputs.BrandingFont>;
|
|
62
62
|
/**
|
|
63
63
|
* URL of logo for branding.
|
|
64
64
|
*/
|
package/client.d.ts
CHANGED
|
@@ -4,6 +4,79 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* With this resource, you can set up applications that use Auth0 for authentication and configure allowed callback URLs and secrets for these applications.
|
|
6
6
|
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
12
|
+
*
|
|
13
|
+
* const myClient = new auth0.Client("myClient", {
|
|
14
|
+
* addons: {
|
|
15
|
+
* samlp: {
|
|
16
|
+
* audience: "https://example.com/saml",
|
|
17
|
+
* createUpnClaim: false,
|
|
18
|
+
* issuer: "https://example.com",
|
|
19
|
+
* mapIdentities: false,
|
|
20
|
+
* mapUnknownClaimsAsIs: false,
|
|
21
|
+
* mappings: {
|
|
22
|
+
* email: "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
|
|
23
|
+
* name: "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
|
|
24
|
+
* },
|
|
25
|
+
* nameIdentifierFormat: "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent",
|
|
26
|
+
* nameIdentifierProbes: ["http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"],
|
|
27
|
+
* passthroughClaimsWithNoMapping: false,
|
|
28
|
+
* signingCert: `-----BEGIN PUBLIC KEY-----
|
|
29
|
+
* MIGf...bpP/t3
|
|
30
|
+
* +JGNGIRMj1hF1rnb6QIDAQAB
|
|
31
|
+
* -----END PUBLIC KEY-----
|
|
32
|
+
*
|
|
33
|
+
* `,
|
|
34
|
+
* },
|
|
35
|
+
* },
|
|
36
|
+
* allowedLogoutUrls: ["https://example.com"],
|
|
37
|
+
* allowedOrigins: ["https://example.com"],
|
|
38
|
+
* appType: "non_interactive",
|
|
39
|
+
* callbacks: ["https://example.com/callback"],
|
|
40
|
+
* clientMetadata: {
|
|
41
|
+
* foo: "zoo",
|
|
42
|
+
* },
|
|
43
|
+
* customLoginPageOn: true,
|
|
44
|
+
* description: "Test Applications Long Description",
|
|
45
|
+
* grantTypes: [
|
|
46
|
+
* "authorization_code",
|
|
47
|
+
* "http://auth0.com/oauth/grant-type/password-realm",
|
|
48
|
+
* "implicit",
|
|
49
|
+
* "password",
|
|
50
|
+
* "refresh_token",
|
|
51
|
+
* ],
|
|
52
|
+
* isFirstParty: true,
|
|
53
|
+
* isTokenEndpointIpHeaderTrusted: true,
|
|
54
|
+
* jwtConfiguration: {
|
|
55
|
+
* alg: "RS256",
|
|
56
|
+
* lifetimeInSeconds: 300,
|
|
57
|
+
* scopes: {
|
|
58
|
+
* foo: "bar",
|
|
59
|
+
* },
|
|
60
|
+
* secretEncoded: true,
|
|
61
|
+
* },
|
|
62
|
+
* mobile: {
|
|
63
|
+
* ios: {
|
|
64
|
+
* appBundleIdentifier: "com.my.bundle.id",
|
|
65
|
+
* teamId: "9JA89QQLNQ",
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* oidcConformant: false,
|
|
69
|
+
* refreshToken: {
|
|
70
|
+
* expirationType: "expiring",
|
|
71
|
+
* leeway: 0,
|
|
72
|
+
* rotationType: "rotating",
|
|
73
|
+
* tokenLifetime: 2592000,
|
|
74
|
+
* },
|
|
75
|
+
* tokenEndpointAuthMethod: "client_secret_post",
|
|
76
|
+
* webOrigins: ["https://example.com"],
|
|
77
|
+
* });
|
|
78
|
+
* ```
|
|
79
|
+
*
|
|
7
80
|
* ## Import
|
|
8
81
|
*
|
|
9
82
|
* A client can be imported using the client's ID. # Example
|
|
@@ -69,15 +142,16 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
69
142
|
/**
|
|
70
143
|
* Secret for the client. Keep this private. To access this attribute you need to add the `read:client_keys` scope to the
|
|
71
144
|
* Terraform client. Otherwise, the attribute will contain an empty string. Use this attribute on the
|
|
72
|
-
* `auth0_client_credentials` resource instead, to allow managing it directly
|
|
145
|
+
* `auth0_client_credentials` resource instead, to allow managing it directly or use the `auth0_client` data source to read
|
|
146
|
+
* this property.
|
|
73
147
|
*
|
|
74
|
-
* @deprecated Reading the client secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead.
|
|
148
|
+
* @deprecated Reading the client secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead or use the `auth0_client` data source to read this property.
|
|
75
149
|
*/
|
|
76
150
|
readonly clientSecret: pulumi.Output<string>;
|
|
77
151
|
/**
|
|
78
152
|
* Custom metadata for the rotation. The contents of this map are arbitrary and are hashed by the provider. When the hash changes, a rotation is triggered. For example, the map could contain the user making the change, the date of the change, and a text reason for the change. For more info: rotate-client-secret for instructions on how to rotate client secrets with zero downtime.
|
|
79
153
|
*
|
|
80
|
-
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](
|
|
154
|
+
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](https://registry.terraform.io/providers/auth0/auth0/latest/docs/guides/client_secret_rotation) for instructions on how to rotate client secrets with zero downtime.
|
|
81
155
|
*/
|
|
82
156
|
readonly clientSecretRotationTrigger: pulumi.Output<{
|
|
83
157
|
[key: string]: any;
|
|
@@ -125,7 +199,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
125
199
|
*/
|
|
126
200
|
readonly isFirstParty: pulumi.Output<boolean>;
|
|
127
201
|
/**
|
|
128
|
-
* Indicates whether the token endpoint IP header is trusted.
|
|
202
|
+
* Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.
|
|
129
203
|
*/
|
|
130
204
|
readonly isTokenEndpointIpHeaderTrusted: pulumi.Output<boolean>;
|
|
131
205
|
/**
|
|
@@ -157,7 +231,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
157
231
|
*/
|
|
158
232
|
readonly oidcConformant: pulumi.Output<boolean>;
|
|
159
233
|
/**
|
|
160
|
-
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or
|
|
234
|
+
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
161
235
|
*/
|
|
162
236
|
readonly organizationRequireBehavior: pulumi.Output<string | undefined>;
|
|
163
237
|
/**
|
|
@@ -183,9 +257,15 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
183
257
|
*/
|
|
184
258
|
readonly ssoDisabled: pulumi.Output<boolean | undefined>;
|
|
185
259
|
/**
|
|
186
|
-
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
260
|
+
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
261
|
+
* client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic).
|
|
262
|
+
* Managing the authentication method through this attribute is deprecated and it will be removed in a future major
|
|
263
|
+
* version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check
|
|
264
|
+
* the [MIGRATION
|
|
265
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on
|
|
266
|
+
* how to do that.
|
|
187
267
|
*
|
|
188
|
-
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md) on how to do that.
|
|
268
|
+
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on how to do that.
|
|
189
269
|
*/
|
|
190
270
|
readonly tokenEndpointAuthMethod: pulumi.Output<string>;
|
|
191
271
|
/**
|
|
@@ -246,15 +326,16 @@ export interface ClientState {
|
|
|
246
326
|
/**
|
|
247
327
|
* Secret for the client. Keep this private. To access this attribute you need to add the `read:client_keys` scope to the
|
|
248
328
|
* Terraform client. Otherwise, the attribute will contain an empty string. Use this attribute on the
|
|
249
|
-
* `auth0_client_credentials` resource instead, to allow managing it directly
|
|
329
|
+
* `auth0_client_credentials` resource instead, to allow managing it directly or use the `auth0_client` data source to read
|
|
330
|
+
* this property.
|
|
250
331
|
*
|
|
251
|
-
* @deprecated Reading the client secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead.
|
|
332
|
+
* @deprecated Reading the client secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead or use the `auth0_client` data source to read this property.
|
|
252
333
|
*/
|
|
253
334
|
clientSecret?: pulumi.Input<string>;
|
|
254
335
|
/**
|
|
255
336
|
* Custom metadata for the rotation. The contents of this map are arbitrary and are hashed by the provider. When the hash changes, a rotation is triggered. For example, the map could contain the user making the change, the date of the change, and a text reason for the change. For more info: rotate-client-secret for instructions on how to rotate client secrets with zero downtime.
|
|
256
337
|
*
|
|
257
|
-
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](
|
|
338
|
+
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](https://registry.terraform.io/providers/auth0/auth0/latest/docs/guides/client_secret_rotation) for instructions on how to rotate client secrets with zero downtime.
|
|
258
339
|
*/
|
|
259
340
|
clientSecretRotationTrigger?: pulumi.Input<{
|
|
260
341
|
[key: string]: any;
|
|
@@ -302,7 +383,7 @@ export interface ClientState {
|
|
|
302
383
|
*/
|
|
303
384
|
isFirstParty?: pulumi.Input<boolean>;
|
|
304
385
|
/**
|
|
305
|
-
* Indicates whether the token endpoint IP header is trusted.
|
|
386
|
+
* Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.
|
|
306
387
|
*/
|
|
307
388
|
isTokenEndpointIpHeaderTrusted?: pulumi.Input<boolean>;
|
|
308
389
|
/**
|
|
@@ -334,7 +415,7 @@ export interface ClientState {
|
|
|
334
415
|
*/
|
|
335
416
|
oidcConformant?: pulumi.Input<boolean>;
|
|
336
417
|
/**
|
|
337
|
-
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or
|
|
418
|
+
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
338
419
|
*/
|
|
339
420
|
organizationRequireBehavior?: pulumi.Input<string>;
|
|
340
421
|
/**
|
|
@@ -360,9 +441,15 @@ export interface ClientState {
|
|
|
360
441
|
*/
|
|
361
442
|
ssoDisabled?: pulumi.Input<boolean>;
|
|
362
443
|
/**
|
|
363
|
-
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
444
|
+
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
445
|
+
* client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic).
|
|
446
|
+
* Managing the authentication method through this attribute is deprecated and it will be removed in a future major
|
|
447
|
+
* version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check
|
|
448
|
+
* the [MIGRATION
|
|
449
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on
|
|
450
|
+
* how to do that.
|
|
364
451
|
*
|
|
365
|
-
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md) on how to do that.
|
|
452
|
+
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on how to do that.
|
|
366
453
|
*/
|
|
367
454
|
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
368
455
|
/**
|
|
@@ -411,7 +498,7 @@ export interface ClientArgs {
|
|
|
411
498
|
/**
|
|
412
499
|
* Custom metadata for the rotation. The contents of this map are arbitrary and are hashed by the provider. When the hash changes, a rotation is triggered. For example, the map could contain the user making the change, the date of the change, and a text reason for the change. For more info: rotate-client-secret for instructions on how to rotate client secrets with zero downtime.
|
|
413
500
|
*
|
|
414
|
-
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](
|
|
501
|
+
* @deprecated Rotating a client's secret through this attribute is deprecated and it will be removed in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's secret instead. Refer to the [client secret rotation guide](https://registry.terraform.io/providers/auth0/auth0/latest/docs/guides/client_secret_rotation) for instructions on how to rotate client secrets with zero downtime.
|
|
415
502
|
*/
|
|
416
503
|
clientSecretRotationTrigger?: pulumi.Input<{
|
|
417
504
|
[key: string]: any;
|
|
@@ -459,7 +546,7 @@ export interface ClientArgs {
|
|
|
459
546
|
*/
|
|
460
547
|
isFirstParty?: pulumi.Input<boolean>;
|
|
461
548
|
/**
|
|
462
|
-
* Indicates whether the token endpoint IP header is trusted.
|
|
549
|
+
* Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.
|
|
463
550
|
*/
|
|
464
551
|
isTokenEndpointIpHeaderTrusted?: pulumi.Input<boolean>;
|
|
465
552
|
/**
|
|
@@ -491,7 +578,7 @@ export interface ClientArgs {
|
|
|
491
578
|
*/
|
|
492
579
|
oidcConformant?: pulumi.Input<boolean>;
|
|
493
580
|
/**
|
|
494
|
-
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or
|
|
581
|
+
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
495
582
|
*/
|
|
496
583
|
organizationRequireBehavior?: pulumi.Input<string>;
|
|
497
584
|
/**
|
|
@@ -511,9 +598,15 @@ export interface ClientArgs {
|
|
|
511
598
|
*/
|
|
512
599
|
ssoDisabled?: pulumi.Input<boolean>;
|
|
513
600
|
/**
|
|
514
|
-
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
601
|
+
* Defines the requested authentication method for the token endpoint. Options include `none` (public client without a
|
|
602
|
+
* client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic).
|
|
603
|
+
* Managing the authentication method through this attribute is deprecated and it will be removed in a future major
|
|
604
|
+
* version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check
|
|
605
|
+
* the [MIGRATION
|
|
606
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on
|
|
607
|
+
* how to do that.
|
|
515
608
|
*
|
|
516
|
-
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md) on how to do that.
|
|
609
|
+
* @deprecated Managing the authentication method through this attribute is deprecated and it will be changed to read-only in a future version. Migrate to the `auth0_client_credentials` resource to manage a client's authentication method instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#client-authentication-method) on how to do that.
|
|
517
610
|
*/
|
|
518
611
|
tokenEndpointAuthMethod?: pulumi.Input<string>;
|
|
519
612
|
/**
|
package/client.js
CHANGED
|
@@ -8,6 +8,79 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* With this resource, you can set up applications that use Auth0 for authentication and configure allowed callback URLs and secrets for these applications.
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myClient = new auth0.Client("myClient", {
|
|
18
|
+
* addons: {
|
|
19
|
+
* samlp: {
|
|
20
|
+
* audience: "https://example.com/saml",
|
|
21
|
+
* createUpnClaim: false,
|
|
22
|
+
* issuer: "https://example.com",
|
|
23
|
+
* mapIdentities: false,
|
|
24
|
+
* mapUnknownClaimsAsIs: false,
|
|
25
|
+
* mappings: {
|
|
26
|
+
* email: "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress",
|
|
27
|
+
* name: "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name",
|
|
28
|
+
* },
|
|
29
|
+
* nameIdentifierFormat: "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent",
|
|
30
|
+
* nameIdentifierProbes: ["http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress"],
|
|
31
|
+
* passthroughClaimsWithNoMapping: false,
|
|
32
|
+
* signingCert: `-----BEGIN PUBLIC KEY-----
|
|
33
|
+
* MIGf...bpP/t3
|
|
34
|
+
* +JGNGIRMj1hF1rnb6QIDAQAB
|
|
35
|
+
* -----END PUBLIC KEY-----
|
|
36
|
+
*
|
|
37
|
+
* `,
|
|
38
|
+
* },
|
|
39
|
+
* },
|
|
40
|
+
* allowedLogoutUrls: ["https://example.com"],
|
|
41
|
+
* allowedOrigins: ["https://example.com"],
|
|
42
|
+
* appType: "non_interactive",
|
|
43
|
+
* callbacks: ["https://example.com/callback"],
|
|
44
|
+
* clientMetadata: {
|
|
45
|
+
* foo: "zoo",
|
|
46
|
+
* },
|
|
47
|
+
* customLoginPageOn: true,
|
|
48
|
+
* description: "Test Applications Long Description",
|
|
49
|
+
* grantTypes: [
|
|
50
|
+
* "authorization_code",
|
|
51
|
+
* "http://auth0.com/oauth/grant-type/password-realm",
|
|
52
|
+
* "implicit",
|
|
53
|
+
* "password",
|
|
54
|
+
* "refresh_token",
|
|
55
|
+
* ],
|
|
56
|
+
* isFirstParty: true,
|
|
57
|
+
* isTokenEndpointIpHeaderTrusted: true,
|
|
58
|
+
* jwtConfiguration: {
|
|
59
|
+
* alg: "RS256",
|
|
60
|
+
* lifetimeInSeconds: 300,
|
|
61
|
+
* scopes: {
|
|
62
|
+
* foo: "bar",
|
|
63
|
+
* },
|
|
64
|
+
* secretEncoded: true,
|
|
65
|
+
* },
|
|
66
|
+
* mobile: {
|
|
67
|
+
* ios: {
|
|
68
|
+
* appBundleIdentifier: "com.my.bundle.id",
|
|
69
|
+
* teamId: "9JA89QQLNQ",
|
|
70
|
+
* },
|
|
71
|
+
* },
|
|
72
|
+
* oidcConformant: false,
|
|
73
|
+
* refreshToken: {
|
|
74
|
+
* expirationType: "expiring",
|
|
75
|
+
* leeway: 0,
|
|
76
|
+
* rotationType: "rotating",
|
|
77
|
+
* tokenLifetime: 2592000,
|
|
78
|
+
* },
|
|
79
|
+
* tokenEndpointAuthMethod: "client_secret_post",
|
|
80
|
+
* webOrigins: ["https://example.com"],
|
|
81
|
+
* });
|
|
82
|
+
* ```
|
|
83
|
+
*
|
|
11
84
|
* ## Import
|
|
12
85
|
*
|
|
13
86
|
* A client can be imported using the client's ID. # Example
|
package/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":"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"}
|
package/connection.d.ts
CHANGED
|
@@ -168,7 +168,7 @@ import * as outputs from "./types/output";
|
|
|
168
168
|
* ```
|
|
169
169
|
* ### OAuth2 Connection
|
|
170
170
|
*
|
|
171
|
-
* Also applies to following connection strategies: `dropbox`, `bitbucket`, `paypal`, `twitter`, `amazon`, `yahoo`, `box`, `wordpress`, `
|
|
171
|
+
* Also applies to following connection strategies: `dropbox`, `bitbucket`, `paypal`, `twitter`, `amazon`, `yahoo`, `box`, `wordpress`, `shopify`, `custom`
|
|
172
172
|
*
|
|
173
173
|
* ```typescript
|
|
174
174
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -358,7 +358,7 @@ export declare class Connection extends pulumi.CustomResource {
|
|
|
358
358
|
*/
|
|
359
359
|
readonly displayName: pulumi.Output<string | undefined>;
|
|
360
360
|
/**
|
|
361
|
-
* IDs of the clients for which the connection is enabled.
|
|
361
|
+
* IDs of the clients for which the connection is enabled. Reading the enabled clients through this attribute is deprecated and it will be removed in a future major version. Use the `auth0.Connection` data source instead.
|
|
362
362
|
*/
|
|
363
363
|
readonly enabledClients: pulumi.Output<string[]>;
|
|
364
364
|
/**
|
|
@@ -366,7 +366,7 @@ export declare class Connection extends pulumi.CustomResource {
|
|
|
366
366
|
*/
|
|
367
367
|
readonly isDomainConnection: pulumi.Output<boolean>;
|
|
368
368
|
/**
|
|
369
|
-
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
369
|
+
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
370
370
|
*/
|
|
371
371
|
readonly metadata: pulumi.Output<{
|
|
372
372
|
[key: string]: string;
|
|
@@ -409,7 +409,7 @@ export interface ConnectionState {
|
|
|
409
409
|
*/
|
|
410
410
|
displayName?: pulumi.Input<string>;
|
|
411
411
|
/**
|
|
412
|
-
* IDs of the clients for which the connection is enabled.
|
|
412
|
+
* IDs of the clients for which the connection is enabled. Reading the enabled clients through this attribute is deprecated and it will be removed in a future major version. Use the `auth0.Connection` data source instead.
|
|
413
413
|
*/
|
|
414
414
|
enabledClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
415
415
|
/**
|
|
@@ -417,7 +417,7 @@ export interface ConnectionState {
|
|
|
417
417
|
*/
|
|
418
418
|
isDomainConnection?: pulumi.Input<boolean>;
|
|
419
419
|
/**
|
|
420
|
-
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
420
|
+
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
421
421
|
*/
|
|
422
422
|
metadata?: pulumi.Input<{
|
|
423
423
|
[key: string]: pulumi.Input<string>;
|
|
@@ -456,7 +456,7 @@ export interface ConnectionArgs {
|
|
|
456
456
|
*/
|
|
457
457
|
isDomainConnection?: pulumi.Input<boolean>;
|
|
458
458
|
/**
|
|
459
|
-
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
459
|
+
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
460
460
|
*/
|
|
461
461
|
metadata?: pulumi.Input<{
|
|
462
462
|
[key: string]: pulumi.Input<string>;
|
package/connection.js
CHANGED
|
@@ -172,7 +172,7 @@ const utilities = require("./utilities");
|
|
|
172
172
|
* ```
|
|
173
173
|
* ### OAuth2 Connection
|
|
174
174
|
*
|
|
175
|
-
* Also applies to following connection strategies: `dropbox`, `bitbucket`, `paypal`, `twitter`, `amazon`, `yahoo`, `box`, `wordpress`, `
|
|
175
|
+
* Also applies to following connection strategies: `dropbox`, `bitbucket`, `paypal`, `twitter`, `amazon`, `yahoo`, `box`, `wordpress`, `shopify`, `custom`
|
|
176
176
|
*
|
|
177
177
|
* ```typescript
|
|
178
178
|
* import * as pulumi from "@pulumi/pulumi";
|
package/getClient.d.ts
CHANGED
|
@@ -121,7 +121,7 @@ export interface GetClientResult {
|
|
|
121
121
|
*/
|
|
122
122
|
readonly isFirstParty: boolean;
|
|
123
123
|
/**
|
|
124
|
-
* Indicates whether the token endpoint IP header is trusted.
|
|
124
|
+
* Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.
|
|
125
125
|
*/
|
|
126
126
|
readonly isTokenEndpointIpHeaderTrusted: boolean;
|
|
127
127
|
/**
|
|
@@ -153,7 +153,7 @@ export interface GetClientResult {
|
|
|
153
153
|
*/
|
|
154
154
|
readonly oidcConformant: boolean;
|
|
155
155
|
/**
|
|
156
|
-
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or
|
|
156
|
+
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
157
157
|
*/
|
|
158
158
|
readonly organizationRequireBehavior: string;
|
|
159
159
|
/**
|
|
@@ -178,9 +178,6 @@ export interface GetClientResult {
|
|
|
178
178
|
* Indicates whether or not SSO is disabled.
|
|
179
179
|
*/
|
|
180
180
|
readonly ssoDisabled: boolean;
|
|
181
|
-
/**
|
|
182
|
-
* 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).
|
|
183
|
-
*/
|
|
184
181
|
readonly tokenEndpointAuthMethod: string;
|
|
185
182
|
/**
|
|
186
183
|
* URLs that represent valid web origins for use with web message response mode.
|
package/getClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8BAQC;
|
|
1
|
+
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8BAQC;AAmKD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpE,CAAC;AAFD,0CAEC"}
|
package/getConnection.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export interface GetConnectionResult {
|
|
|
56
56
|
*/
|
|
57
57
|
readonly isDomainConnection: boolean;
|
|
58
58
|
/**
|
|
59
|
-
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
59
|
+
* Metadata associated with the connection, in the form of a map of string values (max 255 chars).
|
|
60
60
|
*/
|
|
61
61
|
readonly metadata: {
|
|
62
62
|
[key: string]: string;
|
package/getGlobalClient.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* Retrieve a tenant's global Auth0 application client.
|
|
5
|
-
*
|
|
6
4
|
* ## Example Usage
|
|
7
5
|
*
|
|
8
6
|
* ```typescript
|
|
@@ -103,7 +101,7 @@ export interface GetGlobalClientResult {
|
|
|
103
101
|
*/
|
|
104
102
|
readonly isFirstParty: boolean;
|
|
105
103
|
/**
|
|
106
|
-
* Indicates whether the token endpoint IP header is trusted.
|
|
104
|
+
* Indicates whether the token endpoint IP header is trusted. This attribute can only be updated after the client gets created.
|
|
107
105
|
*/
|
|
108
106
|
readonly isTokenEndpointIpHeaderTrusted: boolean;
|
|
109
107
|
/**
|
|
@@ -135,7 +133,7 @@ export interface GetGlobalClientResult {
|
|
|
135
133
|
*/
|
|
136
134
|
readonly oidcConformant: boolean;
|
|
137
135
|
/**
|
|
138
|
-
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or
|
|
136
|
+
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
139
137
|
*/
|
|
140
138
|
readonly organizationRequireBehavior: string;
|
|
141
139
|
/**
|
|
@@ -160,9 +158,6 @@ export interface GetGlobalClientResult {
|
|
|
160
158
|
* Indicates whether or not SSO is disabled.
|
|
161
159
|
*/
|
|
162
160
|
readonly ssoDisabled: boolean;
|
|
163
|
-
/**
|
|
164
|
-
* 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).
|
|
165
|
-
*/
|
|
166
161
|
readonly tokenEndpointAuthMethod: string;
|
|
167
162
|
/**
|
|
168
163
|
* URLs that represent valid web origins for use with web message response mode.
|
package/getGlobalClient.js
CHANGED
package/getGlobalClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGlobalClient.js","sourceRoot":"","sources":["../getGlobalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getGlobalClient.js","sourceRoot":"","sources":["../getGlobalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;GASG;AACH,SAAgB,eAAe,CAAC,IAA2B;IAEvD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE,EAC3E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC"}
|
package/getRole.d.ts
CHANGED
|
@@ -47,9 +47,6 @@ export interface GetRoleResult {
|
|
|
47
47
|
* The name of the role. If not provided, `roleId` must be set.
|
|
48
48
|
*/
|
|
49
49
|
readonly name?: string;
|
|
50
|
-
/**
|
|
51
|
-
* Configuration settings for permissions (scopes) attached to the role.
|
|
52
|
-
*/
|
|
53
50
|
readonly permissions: outputs.GetRolePermission[];
|
|
54
51
|
/**
|
|
55
52
|
* The ID of the role. If not provided, `name` must be set.
|
package/getRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;
|
|
1
|
+
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;AAsCD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|
package/getTenant.d.ts
CHANGED
|
@@ -21,9 +21,6 @@ export interface GetTenantResult {
|
|
|
21
21
|
* URLs that Auth0 may redirect to after logout.
|
|
22
22
|
*/
|
|
23
23
|
readonly allowedLogoutUrls: string[];
|
|
24
|
-
/**
|
|
25
|
-
* Configuration settings for change password page.
|
|
26
|
-
*/
|
|
27
24
|
readonly changePasswords: outputs.GetTenantChangePassword[];
|
|
28
25
|
/**
|
|
29
26
|
* API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application.
|
|
@@ -45,9 +42,6 @@ export interface GetTenantResult {
|
|
|
45
42
|
* Supported locales for the user interface. The first locale in the list will be used to set the default locale.
|
|
46
43
|
*/
|
|
47
44
|
readonly enabledLocales: string[];
|
|
48
|
-
/**
|
|
49
|
-
* Configuration settings for error pages.
|
|
50
|
-
*/
|
|
51
45
|
readonly errorPages: outputs.GetTenantErrorPage[];
|
|
52
46
|
/**
|
|
53
47
|
* Configuration settings for tenant flags.
|
|
@@ -57,9 +51,6 @@ export interface GetTenantResult {
|
|
|
57
51
|
* Friendly name for the tenant.
|
|
58
52
|
*/
|
|
59
53
|
readonly friendlyName: string;
|
|
60
|
-
/**
|
|
61
|
-
* Configuration settings for the Guardian MFA page.
|
|
62
|
-
*/
|
|
63
54
|
readonly guardianMfaPages: outputs.GetTenantGuardianMfaPage[];
|
|
64
55
|
/**
|
|
65
56
|
* The provider-assigned unique ID for this managed resource.
|
|
@@ -97,8 +88,5 @@ export interface GetTenantResult {
|
|
|
97
88
|
* Support URL for authenticating users.
|
|
98
89
|
*/
|
|
99
90
|
readonly supportUrl: string;
|
|
100
|
-
/**
|
|
101
|
-
* Configuration settings for Universal Login.
|
|
102
|
-
*/
|
|
103
91
|
readonly universalLogins: outputs.GetTenantUniversalLogin[];
|
|
104
92
|
}
|