@pulumi/auth0 2.10.0 → 2.12.0-alpha.1660228844
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/action.d.ts +1 -1
- package/action.js +1 -1
- package/client.d.ts +3 -3
- package/connection.d.ts +0 -37
- package/connection.js +0 -37
- package/connection.js.map +1 -1
- package/emailTemplate.d.ts +13 -0
- package/emailTemplate.js +3 -0
- package/emailTemplate.js.map +1 -1
- package/guardian.d.ts +122 -5
- package/guardian.js +39 -2
- package/guardian.js.map +1 -1
- package/index.d.ts +2 -0
- package/index.js +10 -0
- package/index.js.map +1 -1
- package/organization.d.ts +6 -0
- package/organization.js.map +1 -1
- package/organizationConnection.d.ts +112 -0
- package/organizationConnection.js +87 -0
- package/organizationConnection.js.map +1 -0
- package/organizationMember.d.ts +96 -0
- package/organizationMember.js +83 -0
- package/organizationMember.js.map +1 -0
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/prompt.d.ts +16 -6
- package/prompt.js +3 -0
- package/prompt.js.map +1 -1
- package/tenant.d.ts +16 -1
- package/tenant.js +6 -1
- package/tenant.js.map +1 -1
- package/types/input.d.ts +91 -0
- package/types/output.d.ts +106 -15
package/action.d.ts
CHANGED
package/action.js
CHANGED
package/client.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
128
128
|
*/
|
|
129
129
|
readonly allowedOrigins: pulumi.Output<string[] | undefined>;
|
|
130
130
|
/**
|
|
131
|
-
* 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`.
|
|
131
|
+
* 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`, `ssoIntegration`, `zendesk`, `zoom`.
|
|
132
132
|
*/
|
|
133
133
|
readonly appType: pulumi.Output<string | undefined>;
|
|
134
134
|
/**
|
|
@@ -287,7 +287,7 @@ export interface ClientState {
|
|
|
287
287
|
*/
|
|
288
288
|
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
289
289
|
/**
|
|
290
|
-
* 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`.
|
|
290
|
+
* 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`, `ssoIntegration`, `zendesk`, `zoom`.
|
|
291
291
|
*/
|
|
292
292
|
appType?: pulumi.Input<string>;
|
|
293
293
|
/**
|
|
@@ -438,7 +438,7 @@ export interface ClientArgs {
|
|
|
438
438
|
*/
|
|
439
439
|
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
440
440
|
/**
|
|
441
|
-
* 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`.
|
|
441
|
+
* 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`, `ssoIntegration`, `zendesk`, `zoom`.
|
|
442
442
|
*/
|
|
443
443
|
appType?: pulumi.Input<string>;
|
|
444
444
|
/**
|
package/connection.d.ts
CHANGED
|
@@ -5,43 +5,6 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
5
5
|
* (such as Google or LinkedIn), databases, or passwordless authentication methods. This resource allows you to configure
|
|
6
6
|
* and manage connections to be used with your clients and users.
|
|
7
7
|
*
|
|
8
|
-
* ## Example Usage
|
|
9
|
-
*
|
|
10
|
-
* ```typescript
|
|
11
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
-
* import * as auth0 from "@pulumi/auth0";
|
|
13
|
-
*
|
|
14
|
-
* const myConnection = new auth0.Connection("my_connection", {
|
|
15
|
-
* metadata: {
|
|
16
|
-
* key1: "foo",
|
|
17
|
-
* key2: "bar",
|
|
18
|
-
* },
|
|
19
|
-
* options: {
|
|
20
|
-
* bruteForceProtection: true,
|
|
21
|
-
* configuration: {
|
|
22
|
-
* bar: "baz",
|
|
23
|
-
* foo: "bar",
|
|
24
|
-
* },
|
|
25
|
-
* customScripts: {
|
|
26
|
-
* get_user: `function getByEmail (email, callback) {
|
|
27
|
-
* return callback(new Error("Whoops!"))
|
|
28
|
-
* }
|
|
29
|
-
* `,
|
|
30
|
-
* },
|
|
31
|
-
* enabledDatabaseCustomization: true,
|
|
32
|
-
* passwordHistories: [{
|
|
33
|
-
* enable: true,
|
|
34
|
-
* size: 3,
|
|
35
|
-
* }],
|
|
36
|
-
* passwordPolicy: "excellent",
|
|
37
|
-
* },
|
|
38
|
-
* strategy: "auth0",
|
|
39
|
-
* });
|
|
40
|
-
* ```
|
|
41
|
-
*
|
|
42
|
-
* > The Auth0 dashboard displays only one connection per social provider. Although the Auth0 Management API allows the
|
|
43
|
-
* creation of multiple connections per strategy, the additional connections may not be visible in the Auth0 dashboard.
|
|
44
|
-
*
|
|
45
8
|
* ## Import
|
|
46
9
|
*
|
|
47
10
|
* Connections can be imported using their id, e.g.
|
package/connection.js
CHANGED
|
@@ -10,43 +10,6 @@ const utilities = require("./utilities");
|
|
|
10
10
|
* (such as Google or LinkedIn), databases, or passwordless authentication methods. This resource allows you to configure
|
|
11
11
|
* and manage connections to be used with your clients and users.
|
|
12
12
|
*
|
|
13
|
-
* ## Example Usage
|
|
14
|
-
*
|
|
15
|
-
* ```typescript
|
|
16
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
-
* import * as auth0 from "@pulumi/auth0";
|
|
18
|
-
*
|
|
19
|
-
* const myConnection = new auth0.Connection("my_connection", {
|
|
20
|
-
* metadata: {
|
|
21
|
-
* key1: "foo",
|
|
22
|
-
* key2: "bar",
|
|
23
|
-
* },
|
|
24
|
-
* options: {
|
|
25
|
-
* bruteForceProtection: true,
|
|
26
|
-
* configuration: {
|
|
27
|
-
* bar: "baz",
|
|
28
|
-
* foo: "bar",
|
|
29
|
-
* },
|
|
30
|
-
* customScripts: {
|
|
31
|
-
* get_user: `function getByEmail (email, callback) {
|
|
32
|
-
* return callback(new Error("Whoops!"))
|
|
33
|
-
* }
|
|
34
|
-
* `,
|
|
35
|
-
* },
|
|
36
|
-
* enabledDatabaseCustomization: true,
|
|
37
|
-
* passwordHistories: [{
|
|
38
|
-
* enable: true,
|
|
39
|
-
* size: 3,
|
|
40
|
-
* }],
|
|
41
|
-
* passwordPolicy: "excellent",
|
|
42
|
-
* },
|
|
43
|
-
* strategy: "auth0",
|
|
44
|
-
* });
|
|
45
|
-
* ```
|
|
46
|
-
*
|
|
47
|
-
* > The Auth0 dashboard displays only one connection per social provider. Although the Auth0 Management API allows the
|
|
48
|
-
* creation of multiple connections per strategy, the additional connections may not be visible in the Auth0 dashboard.
|
|
49
|
-
*
|
|
50
13
|
* ## Import
|
|
51
14
|
*
|
|
52
15
|
* Connections can be imported using their id, e.g.
|
package/connection.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../connection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../connection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;IAiFjD,YAAY,IAAY,EAAE,WAA8C,EAAE,IAAmC;QACzG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0C,CAAC;YACzD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAyC,CAAC;YACvD,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,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,UAAU,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/D,CAAC;IAnHD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuB,EAAE,IAAmC;QACrH,OAAO,IAAI,UAAU,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjE,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,UAAU,CAAC,YAAY,CAAC;IAC3D,CAAC;;AA1BL,gCAqHC;AAvGG,gBAAgB;AACO,uBAAY,GAAG,mCAAmC,CAAC"}
|
package/emailTemplate.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
28
28
|
* syntax: "liquid",
|
|
29
29
|
* urlLifetimeInSeconds: 3600,
|
|
30
30
|
* enabled: true,
|
|
31
|
+
* includeEmailInRedirect: true,
|
|
31
32
|
* }, {
|
|
32
33
|
* dependsOn: [myEmailProvider],
|
|
33
34
|
* });
|
|
@@ -69,6 +70,10 @@ export declare class EmailTemplate extends pulumi.CustomResource {
|
|
|
69
70
|
* String. Email address to use as the sender. You can include [common variables](https://auth0.com/docs/email/templates#common-variables).
|
|
70
71
|
*/
|
|
71
72
|
readonly from: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* Boolean. Whether the `resetEmail` and `verifyEmail` templates should include the user's email address as the email parameter in the `returnUrl` (true) or whether no email address should be included in the redirect (false). Defaults to true.
|
|
75
|
+
*/
|
|
76
|
+
readonly includeEmailInRedirect: pulumi.Output<boolean>;
|
|
72
77
|
/**
|
|
73
78
|
* String. URL to redirect the user to after a successful action. [Learn more](https://auth0.com/docs/email/templates#configuring-the-redirect-to-url).
|
|
74
79
|
*/
|
|
@@ -114,6 +119,10 @@ export interface EmailTemplateState {
|
|
|
114
119
|
* String. Email address to use as the sender. You can include [common variables](https://auth0.com/docs/email/templates#common-variables).
|
|
115
120
|
*/
|
|
116
121
|
from?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* Boolean. Whether the `resetEmail` and `verifyEmail` templates should include the user's email address as the email parameter in the `returnUrl` (true) or whether no email address should be included in the redirect (false). Defaults to true.
|
|
124
|
+
*/
|
|
125
|
+
includeEmailInRedirect?: pulumi.Input<boolean>;
|
|
117
126
|
/**
|
|
118
127
|
* String. URL to redirect the user to after a successful action. [Learn more](https://auth0.com/docs/email/templates#configuring-the-redirect-to-url).
|
|
119
128
|
*/
|
|
@@ -151,6 +160,10 @@ export interface EmailTemplateArgs {
|
|
|
151
160
|
* String. Email address to use as the sender. You can include [common variables](https://auth0.com/docs/email/templates#common-variables).
|
|
152
161
|
*/
|
|
153
162
|
from: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* Boolean. Whether the `resetEmail` and `verifyEmail` templates should include the user's email address as the email parameter in the `returnUrl` (true) or whether no email address should be included in the redirect (false). Defaults to true.
|
|
165
|
+
*/
|
|
166
|
+
includeEmailInRedirect?: pulumi.Input<boolean>;
|
|
154
167
|
/**
|
|
155
168
|
* String. URL to redirect the user to after a successful action. [Learn more](https://auth0.com/docs/email/templates#configuring-the-redirect-to-url).
|
|
156
169
|
*/
|
package/emailTemplate.js
CHANGED
|
@@ -34,6 +34,7 @@ const utilities = require("./utilities");
|
|
|
34
34
|
* syntax: "liquid",
|
|
35
35
|
* urlLifetimeInSeconds: 3600,
|
|
36
36
|
* enabled: true,
|
|
37
|
+
* includeEmailInRedirect: true,
|
|
37
38
|
* }, {
|
|
38
39
|
* dependsOn: [myEmailProvider],
|
|
39
40
|
* });
|
|
@@ -56,6 +57,7 @@ class EmailTemplate extends pulumi.CustomResource {
|
|
|
56
57
|
resourceInputs["body"] = state ? state.body : undefined;
|
|
57
58
|
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
58
59
|
resourceInputs["from"] = state ? state.from : undefined;
|
|
60
|
+
resourceInputs["includeEmailInRedirect"] = state ? state.includeEmailInRedirect : undefined;
|
|
59
61
|
resourceInputs["resultUrl"] = state ? state.resultUrl : undefined;
|
|
60
62
|
resourceInputs["subject"] = state ? state.subject : undefined;
|
|
61
63
|
resourceInputs["syntax"] = state ? state.syntax : undefined;
|
|
@@ -85,6 +87,7 @@ class EmailTemplate extends pulumi.CustomResource {
|
|
|
85
87
|
resourceInputs["body"] = args ? args.body : undefined;
|
|
86
88
|
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
87
89
|
resourceInputs["from"] = args ? args.from : undefined;
|
|
90
|
+
resourceInputs["includeEmailInRedirect"] = args ? args.includeEmailInRedirect : undefined;
|
|
88
91
|
resourceInputs["resultUrl"] = args ? args.resultUrl : undefined;
|
|
89
92
|
resourceInputs["subject"] = args ? args.subject : undefined;
|
|
90
93
|
resourceInputs["syntax"] = args ? args.syntax : undefined;
|
package/emailTemplate.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emailTemplate.js","sourceRoot":"","sources":["../emailTemplate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"emailTemplate.js","sourceRoot":"","sources":["../emailTemplate.ts"],"names":[],"mappings":"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"}
|
package/guardian.d.ts
CHANGED
|
@@ -10,11 +10,19 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
10
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
11
11
|
* import * as auth0 from "@pulumi/auth0";
|
|
12
12
|
*
|
|
13
|
-
* const
|
|
13
|
+
* const myGuardian = new auth0.Guardian("my_guardian", {
|
|
14
|
+
* duo: {
|
|
15
|
+
* hostname: "api-hostname",
|
|
16
|
+
* integrationKey: "someKey",
|
|
17
|
+
* secretKey: "someSecret",
|
|
18
|
+
* },
|
|
14
19
|
* email: true,
|
|
15
20
|
* otp: true,
|
|
16
21
|
* phone: {
|
|
17
|
-
* messageTypes: [
|
|
22
|
+
* messageTypes: [
|
|
23
|
+
* "sms",
|
|
24
|
+
* "voice",
|
|
25
|
+
* ],
|
|
18
26
|
* options: {
|
|
19
27
|
* enrollmentMessage: "{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.",
|
|
20
28
|
* verificationMessage: "{{code}} is your verification code for {{tenant.friendly_name}}.",
|
|
@@ -22,6 +30,25 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
22
30
|
* provider: "auth0",
|
|
23
31
|
* },
|
|
24
32
|
* policy: "all-applications",
|
|
33
|
+
* push: {
|
|
34
|
+
* amazonSns: {
|
|
35
|
+
* awsAccessKeyId: "test1",
|
|
36
|
+
* awsRegion: "us-west-1",
|
|
37
|
+
* awsSecretAccessKey: "secretKey",
|
|
38
|
+
* snsApnsPlatformApplicationArn: "test_arn",
|
|
39
|
+
* snsGcmPlatformApplicationArn: "test_arn",
|
|
40
|
+
* },
|
|
41
|
+
* customApp: {
|
|
42
|
+
* appName: "CustomApp",
|
|
43
|
+
* appleAppLink: "https://itunes.apple.com/us/app/my-app/id123121",
|
|
44
|
+
* googleAppLink: "https://play.google.com/store/apps/details?id=com.my.app",
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* recoveryCode: true,
|
|
48
|
+
* webauthnPlatform: {}, // This will enable it. Removing this block will disable it.
|
|
49
|
+
* webauthnRoaming: {
|
|
50
|
+
* userVerification: "required",
|
|
51
|
+
* },
|
|
25
52
|
* });
|
|
26
53
|
* ```
|
|
27
54
|
*
|
|
@@ -49,13 +76,22 @@ export declare class Guardian extends pulumi.CustomResource {
|
|
|
49
76
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
50
77
|
*/
|
|
51
78
|
static isInstance(obj: any): obj is Guardian;
|
|
79
|
+
/**
|
|
80
|
+
* List(Resource). Configuration settings for the Duo MFA.
|
|
81
|
+
* If this block is present, Duo MFA will be enabled, and disabled otherwise. For details, see Duo.
|
|
82
|
+
*/
|
|
83
|
+
readonly duo: pulumi.Output<outputs.GuardianDuo | undefined>;
|
|
52
84
|
/**
|
|
53
85
|
* Boolean. Indicates whether email MFA is enabled.
|
|
54
86
|
*/
|
|
55
87
|
readonly email: pulumi.Output<boolean | undefined>;
|
|
88
|
+
/**
|
|
89
|
+
* Boolean. Indicates whether one time password MFA is enabled.
|
|
90
|
+
*/
|
|
56
91
|
readonly otp: pulumi.Output<boolean | undefined>;
|
|
57
92
|
/**
|
|
58
|
-
* List(Resource). Configuration settings for the phone MFA.
|
|
93
|
+
* List(Resource). Configuration settings for the phone MFA.
|
|
94
|
+
* If this block is present, Phone MFA will be enabled, and disabled otherwise. For details, see Phone.
|
|
59
95
|
*/
|
|
60
96
|
readonly phone: pulumi.Output<outputs.GuardianPhone | undefined>;
|
|
61
97
|
/**
|
|
@@ -63,6 +99,27 @@ export declare class Guardian extends pulumi.CustomResource {
|
|
|
63
99
|
* The option `confidence-score` means the trigger of MFA will be adaptive. See [Auth0 docs](https://auth0.com/docs/mfa/adaptive-mfa).
|
|
64
100
|
*/
|
|
65
101
|
readonly policy: pulumi.Output<string>;
|
|
102
|
+
/**
|
|
103
|
+
* List(Resource). Configuration settings for the Push MFA.
|
|
104
|
+
* If this block is present, Push MFA will be enabled, and disabled otherwise. For details, see Push.
|
|
105
|
+
*/
|
|
106
|
+
readonly push: pulumi.Output<outputs.GuardianPush | undefined>;
|
|
107
|
+
/**
|
|
108
|
+
* Boolean. Indicates whether recovery code MFA is enabled.
|
|
109
|
+
*/
|
|
110
|
+
readonly recoveryCode: pulumi.Output<boolean | undefined>;
|
|
111
|
+
/**
|
|
112
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Device Biometrics MFA.
|
|
113
|
+
* If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
|
|
114
|
+
* For details, see WebAuthn Platform.
|
|
115
|
+
*/
|
|
116
|
+
readonly webauthnPlatform: pulumi.Output<outputs.GuardianWebauthnPlatform | undefined>;
|
|
117
|
+
/**
|
|
118
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Security Keys MFA.
|
|
119
|
+
* If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
|
|
120
|
+
* For details, see WebAuthn Roaming.
|
|
121
|
+
*/
|
|
122
|
+
readonly webauthnRoaming: pulumi.Output<outputs.GuardianWebauthnRoaming | undefined>;
|
|
66
123
|
/**
|
|
67
124
|
* Create a Guardian resource with the given unique name, arguments, and options.
|
|
68
125
|
*
|
|
@@ -76,13 +133,22 @@ export declare class Guardian extends pulumi.CustomResource {
|
|
|
76
133
|
* Input properties used for looking up and filtering Guardian resources.
|
|
77
134
|
*/
|
|
78
135
|
export interface GuardianState {
|
|
136
|
+
/**
|
|
137
|
+
* List(Resource). Configuration settings for the Duo MFA.
|
|
138
|
+
* If this block is present, Duo MFA will be enabled, and disabled otherwise. For details, see Duo.
|
|
139
|
+
*/
|
|
140
|
+
duo?: pulumi.Input<inputs.GuardianDuo>;
|
|
79
141
|
/**
|
|
80
142
|
* Boolean. Indicates whether email MFA is enabled.
|
|
81
143
|
*/
|
|
82
144
|
email?: pulumi.Input<boolean>;
|
|
145
|
+
/**
|
|
146
|
+
* Boolean. Indicates whether one time password MFA is enabled.
|
|
147
|
+
*/
|
|
83
148
|
otp?: pulumi.Input<boolean>;
|
|
84
149
|
/**
|
|
85
|
-
* List(Resource). Configuration settings for the phone MFA.
|
|
150
|
+
* List(Resource). Configuration settings for the phone MFA.
|
|
151
|
+
* If this block is present, Phone MFA will be enabled, and disabled otherwise. For details, see Phone.
|
|
86
152
|
*/
|
|
87
153
|
phone?: pulumi.Input<inputs.GuardianPhone>;
|
|
88
154
|
/**
|
|
@@ -90,18 +156,48 @@ export interface GuardianState {
|
|
|
90
156
|
* The option `confidence-score` means the trigger of MFA will be adaptive. See [Auth0 docs](https://auth0.com/docs/mfa/adaptive-mfa).
|
|
91
157
|
*/
|
|
92
158
|
policy?: pulumi.Input<string>;
|
|
159
|
+
/**
|
|
160
|
+
* List(Resource). Configuration settings for the Push MFA.
|
|
161
|
+
* If this block is present, Push MFA will be enabled, and disabled otherwise. For details, see Push.
|
|
162
|
+
*/
|
|
163
|
+
push?: pulumi.Input<inputs.GuardianPush>;
|
|
164
|
+
/**
|
|
165
|
+
* Boolean. Indicates whether recovery code MFA is enabled.
|
|
166
|
+
*/
|
|
167
|
+
recoveryCode?: pulumi.Input<boolean>;
|
|
168
|
+
/**
|
|
169
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Device Biometrics MFA.
|
|
170
|
+
* If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
|
|
171
|
+
* For details, see WebAuthn Platform.
|
|
172
|
+
*/
|
|
173
|
+
webauthnPlatform?: pulumi.Input<inputs.GuardianWebauthnPlatform>;
|
|
174
|
+
/**
|
|
175
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Security Keys MFA.
|
|
176
|
+
* If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
|
|
177
|
+
* For details, see WebAuthn Roaming.
|
|
178
|
+
*/
|
|
179
|
+
webauthnRoaming?: pulumi.Input<inputs.GuardianWebauthnRoaming>;
|
|
93
180
|
}
|
|
94
181
|
/**
|
|
95
182
|
* The set of arguments for constructing a Guardian resource.
|
|
96
183
|
*/
|
|
97
184
|
export interface GuardianArgs {
|
|
185
|
+
/**
|
|
186
|
+
* List(Resource). Configuration settings for the Duo MFA.
|
|
187
|
+
* If this block is present, Duo MFA will be enabled, and disabled otherwise. For details, see Duo.
|
|
188
|
+
*/
|
|
189
|
+
duo?: pulumi.Input<inputs.GuardianDuo>;
|
|
98
190
|
/**
|
|
99
191
|
* Boolean. Indicates whether email MFA is enabled.
|
|
100
192
|
*/
|
|
101
193
|
email?: pulumi.Input<boolean>;
|
|
194
|
+
/**
|
|
195
|
+
* Boolean. Indicates whether one time password MFA is enabled.
|
|
196
|
+
*/
|
|
102
197
|
otp?: pulumi.Input<boolean>;
|
|
103
198
|
/**
|
|
104
|
-
* List(Resource). Configuration settings for the phone MFA.
|
|
199
|
+
* List(Resource). Configuration settings for the phone MFA.
|
|
200
|
+
* If this block is present, Phone MFA will be enabled, and disabled otherwise. For details, see Phone.
|
|
105
201
|
*/
|
|
106
202
|
phone?: pulumi.Input<inputs.GuardianPhone>;
|
|
107
203
|
/**
|
|
@@ -109,4 +205,25 @@ export interface GuardianArgs {
|
|
|
109
205
|
* The option `confidence-score` means the trigger of MFA will be adaptive. See [Auth0 docs](https://auth0.com/docs/mfa/adaptive-mfa).
|
|
110
206
|
*/
|
|
111
207
|
policy: pulumi.Input<string>;
|
|
208
|
+
/**
|
|
209
|
+
* List(Resource). Configuration settings for the Push MFA.
|
|
210
|
+
* If this block is present, Push MFA will be enabled, and disabled otherwise. For details, see Push.
|
|
211
|
+
*/
|
|
212
|
+
push?: pulumi.Input<inputs.GuardianPush>;
|
|
213
|
+
/**
|
|
214
|
+
* Boolean. Indicates whether recovery code MFA is enabled.
|
|
215
|
+
*/
|
|
216
|
+
recoveryCode?: pulumi.Input<boolean>;
|
|
217
|
+
/**
|
|
218
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Device Biometrics MFA.
|
|
219
|
+
* If this block is present, WebAuthn with FIDO Device Biometrics MFA will be enabled, and disabled otherwise.
|
|
220
|
+
* For details, see WebAuthn Platform.
|
|
221
|
+
*/
|
|
222
|
+
webauthnPlatform?: pulumi.Input<inputs.GuardianWebauthnPlatform>;
|
|
223
|
+
/**
|
|
224
|
+
* List(Resource). Configuration settings for the WebAuthn with FIDO Security Keys MFA.
|
|
225
|
+
* If this block is present, WebAuthn with FIDO Security Keys MFA will be enabled, and disabled otherwise.
|
|
226
|
+
* For details, see WebAuthn Roaming.
|
|
227
|
+
*/
|
|
228
|
+
webauthnRoaming?: pulumi.Input<inputs.GuardianWebauthnRoaming>;
|
|
112
229
|
}
|
package/guardian.js
CHANGED
|
@@ -15,11 +15,19 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
16
|
* import * as auth0 from "@pulumi/auth0";
|
|
17
17
|
*
|
|
18
|
-
* const
|
|
18
|
+
* const myGuardian = new auth0.Guardian("my_guardian", {
|
|
19
|
+
* duo: {
|
|
20
|
+
* hostname: "api-hostname",
|
|
21
|
+
* integrationKey: "someKey",
|
|
22
|
+
* secretKey: "someSecret",
|
|
23
|
+
* },
|
|
19
24
|
* email: true,
|
|
20
25
|
* otp: true,
|
|
21
26
|
* phone: {
|
|
22
|
-
* messageTypes: [
|
|
27
|
+
* messageTypes: [
|
|
28
|
+
* "sms",
|
|
29
|
+
* "voice",
|
|
30
|
+
* ],
|
|
23
31
|
* options: {
|
|
24
32
|
* enrollmentMessage: "{{code}} is your verification code for {{tenant.friendly_name}}. Please enter this code to verify your enrollment.",
|
|
25
33
|
* verificationMessage: "{{code}} is your verification code for {{tenant.friendly_name}}.",
|
|
@@ -27,6 +35,25 @@ const utilities = require("./utilities");
|
|
|
27
35
|
* provider: "auth0",
|
|
28
36
|
* },
|
|
29
37
|
* policy: "all-applications",
|
|
38
|
+
* push: {
|
|
39
|
+
* amazonSns: {
|
|
40
|
+
* awsAccessKeyId: "test1",
|
|
41
|
+
* awsRegion: "us-west-1",
|
|
42
|
+
* awsSecretAccessKey: "secretKey",
|
|
43
|
+
* snsApnsPlatformApplicationArn: "test_arn",
|
|
44
|
+
* snsGcmPlatformApplicationArn: "test_arn",
|
|
45
|
+
* },
|
|
46
|
+
* customApp: {
|
|
47
|
+
* appName: "CustomApp",
|
|
48
|
+
* appleAppLink: "https://itunes.apple.com/us/app/my-app/id123121",
|
|
49
|
+
* googleAppLink: "https://play.google.com/store/apps/details?id=com.my.app",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* recoveryCode: true,
|
|
53
|
+
* webauthnPlatform: {}, // This will enable it. Removing this block will disable it.
|
|
54
|
+
* webauthnRoaming: {
|
|
55
|
+
* userVerification: "required",
|
|
56
|
+
* },
|
|
30
57
|
* });
|
|
31
58
|
* ```
|
|
32
59
|
*
|
|
@@ -44,20 +71,30 @@ class Guardian extends pulumi.CustomResource {
|
|
|
44
71
|
opts = opts || {};
|
|
45
72
|
if (opts.id) {
|
|
46
73
|
const state = argsOrState;
|
|
74
|
+
resourceInputs["duo"] = state ? state.duo : undefined;
|
|
47
75
|
resourceInputs["email"] = state ? state.email : undefined;
|
|
48
76
|
resourceInputs["otp"] = state ? state.otp : undefined;
|
|
49
77
|
resourceInputs["phone"] = state ? state.phone : undefined;
|
|
50
78
|
resourceInputs["policy"] = state ? state.policy : undefined;
|
|
79
|
+
resourceInputs["push"] = state ? state.push : undefined;
|
|
80
|
+
resourceInputs["recoveryCode"] = state ? state.recoveryCode : undefined;
|
|
81
|
+
resourceInputs["webauthnPlatform"] = state ? state.webauthnPlatform : undefined;
|
|
82
|
+
resourceInputs["webauthnRoaming"] = state ? state.webauthnRoaming : undefined;
|
|
51
83
|
}
|
|
52
84
|
else {
|
|
53
85
|
const args = argsOrState;
|
|
54
86
|
if ((!args || args.policy === undefined) && !opts.urn) {
|
|
55
87
|
throw new Error("Missing required property 'policy'");
|
|
56
88
|
}
|
|
89
|
+
resourceInputs["duo"] = args ? args.duo : undefined;
|
|
57
90
|
resourceInputs["email"] = args ? args.email : undefined;
|
|
58
91
|
resourceInputs["otp"] = args ? args.otp : undefined;
|
|
59
92
|
resourceInputs["phone"] = args ? args.phone : undefined;
|
|
60
93
|
resourceInputs["policy"] = args ? args.policy : undefined;
|
|
94
|
+
resourceInputs["push"] = args ? args.push : undefined;
|
|
95
|
+
resourceInputs["recoveryCode"] = args ? args.recoveryCode : undefined;
|
|
96
|
+
resourceInputs["webauthnPlatform"] = args ? args.webauthnPlatform : undefined;
|
|
97
|
+
resourceInputs["webauthnRoaming"] = args ? args.webauthnRoaming : undefined;
|
|
61
98
|
}
|
|
62
99
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
63
100
|
super(Guardian.__pulumiType, name, resourceInputs, opts);
|
package/guardian.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"guardian.js","sourceRoot":"","sources":["../guardian.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"guardian.js","sourceRoot":"","sources":["../guardian.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -16,6 +16,8 @@ export * from "./guardian";
|
|
|
16
16
|
export * from "./hook";
|
|
17
17
|
export * from "./logStream";
|
|
18
18
|
export * from "./organization";
|
|
19
|
+
export * from "./organizationConnection";
|
|
20
|
+
export * from "./organizationMember";
|
|
19
21
|
export * from "./prompt";
|
|
20
22
|
export * from "./promptCustomText";
|
|
21
23
|
export * from "./provider";
|
package/index.js
CHANGED
|
@@ -38,6 +38,8 @@ __exportStar(require("./guardian"), exports);
|
|
|
38
38
|
__exportStar(require("./hook"), exports);
|
|
39
39
|
__exportStar(require("./logStream"), exports);
|
|
40
40
|
__exportStar(require("./organization"), exports);
|
|
41
|
+
__exportStar(require("./organizationConnection"), exports);
|
|
42
|
+
__exportStar(require("./organizationMember"), exports);
|
|
41
43
|
__exportStar(require("./prompt"), exports);
|
|
42
44
|
__exportStar(require("./promptCustomText"), exports);
|
|
43
45
|
__exportStar(require("./provider"), exports);
|
|
@@ -69,6 +71,8 @@ const guardian_1 = require("./guardian");
|
|
|
69
71
|
const hook_1 = require("./hook");
|
|
70
72
|
const logStream_1 = require("./logStream");
|
|
71
73
|
const organization_1 = require("./organization");
|
|
74
|
+
const organizationConnection_1 = require("./organizationConnection");
|
|
75
|
+
const organizationMember_1 = require("./organizationMember");
|
|
72
76
|
const prompt_1 = require("./prompt");
|
|
73
77
|
const promptCustomText_1 = require("./promptCustomText");
|
|
74
78
|
const resourceServer_1 = require("./resourceServer");
|
|
@@ -112,6 +116,10 @@ const _module = {
|
|
|
112
116
|
return new logStream_1.LogStream(name, undefined, { urn });
|
|
113
117
|
case "auth0:index/organization:Organization":
|
|
114
118
|
return new organization_1.Organization(name, undefined, { urn });
|
|
119
|
+
case "auth0:index/organizationConnection:OrganizationConnection":
|
|
120
|
+
return new organizationConnection_1.OrganizationConnection(name, undefined, { urn });
|
|
121
|
+
case "auth0:index/organizationMember:OrganizationMember":
|
|
122
|
+
return new organizationMember_1.OrganizationMember(name, undefined, { urn });
|
|
115
123
|
case "auth0:index/prompt:Prompt":
|
|
116
124
|
return new prompt_1.Prompt(name, undefined, { urn });
|
|
117
125
|
case "auth0:index/promptCustomText:PromptCustomText":
|
|
@@ -150,6 +158,8 @@ pulumi.runtime.registerResourceModule("auth0", "index/guardian", _module);
|
|
|
150
158
|
pulumi.runtime.registerResourceModule("auth0", "index/hook", _module);
|
|
151
159
|
pulumi.runtime.registerResourceModule("auth0", "index/logStream", _module);
|
|
152
160
|
pulumi.runtime.registerResourceModule("auth0", "index/organization", _module);
|
|
161
|
+
pulumi.runtime.registerResourceModule("auth0", "index/organizationConnection", _module);
|
|
162
|
+
pulumi.runtime.registerResourceModule("auth0", "index/organizationMember", _module);
|
|
153
163
|
pulumi.runtime.registerResourceModule("auth0", "index/prompt", _module);
|
|
154
164
|
pulumi.runtime.registerResourceModule("auth0", "index/promptCustomText", _module);
|
|
155
165
|
pulumi.runtime.registerResourceModule("auth0", "index/resourceServer", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/organization.d.ts
CHANGED
|
@@ -66,6 +66,8 @@ export declare class Organization extends pulumi.CustomResource {
|
|
|
66
66
|
/**
|
|
67
67
|
* Connections assigned to the organization. For
|
|
68
68
|
* details, see Connections
|
|
69
|
+
*
|
|
70
|
+
* @deprecated Management of organizations through this property has been deprecated in favor of the `auth0_organization_connection` resource and will be deleted in future versions. It is advised to migrate all managed organization connections to the new resource type.
|
|
69
71
|
*/
|
|
70
72
|
readonly connections: pulumi.Output<outputs.OrganizationConnection[]>;
|
|
71
73
|
/**
|
|
@@ -104,6 +106,8 @@ export interface OrganizationState {
|
|
|
104
106
|
/**
|
|
105
107
|
* Connections assigned to the organization. For
|
|
106
108
|
* details, see Connections
|
|
109
|
+
*
|
|
110
|
+
* @deprecated Management of organizations through this property has been deprecated in favor of the `auth0_organization_connection` resource and will be deleted in future versions. It is advised to migrate all managed organization connections to the new resource type.
|
|
107
111
|
*/
|
|
108
112
|
connections?: pulumi.Input<pulumi.Input<inputs.OrganizationConnection>[]>;
|
|
109
113
|
/**
|
|
@@ -134,6 +138,8 @@ export interface OrganizationArgs {
|
|
|
134
138
|
/**
|
|
135
139
|
* Connections assigned to the organization. For
|
|
136
140
|
* details, see Connections
|
|
141
|
+
*
|
|
142
|
+
* @deprecated Management of organizations through this property has been deprecated in favor of the `auth0_organization_connection` resource and will be deleted in future versions. It is advised to migrate all managed organization connections to the new resource type.
|
|
137
143
|
*/
|
|
138
144
|
connections?: pulumi.Input<pulumi.Input<inputs.OrganizationConnection>[]>;
|
|
139
145
|
/**
|