@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/pages.js
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Pages = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* With this resource you can manage custom HTML for the Login, Reset Password, Multi-Factor Authentication and Error pages.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myPages = new auth0.Pages("myPages", {
|
|
18
|
+
* changePassword: {
|
|
19
|
+
* enabled: true,
|
|
20
|
+
* html: "<html><body>My Custom Reset Password Page</body></html>",
|
|
21
|
+
* },
|
|
22
|
+
* error: {
|
|
23
|
+
* html: "<html><body>My Custom Error Page</body></html>",
|
|
24
|
+
* showLogLink: true,
|
|
25
|
+
* url: "https://example.com",
|
|
26
|
+
* },
|
|
27
|
+
* guardianMfa: {
|
|
28
|
+
* enabled: true,
|
|
29
|
+
* html: "<html><body>My Custom MFA Page</body></html>",
|
|
30
|
+
* },
|
|
31
|
+
* login: {
|
|
32
|
+
* enabled: true,
|
|
33
|
+
* html: "<html><body>My Custom Login Page</body></html>",
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* ## Import
|
|
39
|
+
*
|
|
40
|
+
* As this is not a resource identifiable by an ID within the Auth0 Management API, pages can be imported using a random string. # We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4) # Example
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import auth0:index/pages:Pages my_pages 22f4f21b-017a-319d-92e7-2291c1ca36c4
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
class Pages extends pulumi.CustomResource {
|
|
47
|
+
/**
|
|
48
|
+
* Get an existing Pages resource's state with the given name, ID, and optional extra
|
|
49
|
+
* properties used to qualify the lookup.
|
|
50
|
+
*
|
|
51
|
+
* @param name The _unique_ name of the resulting resource.
|
|
52
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
53
|
+
* @param state Any extra arguments used during the lookup.
|
|
54
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
55
|
+
*/
|
|
56
|
+
static get(name, id, state, opts) {
|
|
57
|
+
return new Pages(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
58
|
+
}
|
|
59
|
+
/**
|
|
60
|
+
* Returns true if the given object is an instance of Pages. This is designed to work even
|
|
61
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
62
|
+
*/
|
|
63
|
+
static isInstance(obj) {
|
|
64
|
+
if (obj === undefined || obj === null) {
|
|
65
|
+
return false;
|
|
66
|
+
}
|
|
67
|
+
return obj['__pulumiType'] === Pages.__pulumiType;
|
|
68
|
+
}
|
|
69
|
+
constructor(name, argsOrState, opts) {
|
|
70
|
+
let resourceInputs = {};
|
|
71
|
+
opts = opts || {};
|
|
72
|
+
if (opts.id) {
|
|
73
|
+
const state = argsOrState;
|
|
74
|
+
resourceInputs["changePassword"] = state ? state.changePassword : undefined;
|
|
75
|
+
resourceInputs["error"] = state ? state.error : undefined;
|
|
76
|
+
resourceInputs["guardianMfa"] = state ? state.guardianMfa : undefined;
|
|
77
|
+
resourceInputs["login"] = state ? state.login : undefined;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
const args = argsOrState;
|
|
81
|
+
resourceInputs["changePassword"] = args ? args.changePassword : undefined;
|
|
82
|
+
resourceInputs["error"] = args ? args.error : undefined;
|
|
83
|
+
resourceInputs["guardianMfa"] = args ? args.guardianMfa : undefined;
|
|
84
|
+
resourceInputs["login"] = args ? args.login : undefined;
|
|
85
|
+
}
|
|
86
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
87
|
+
super(Pages.__pulumiType, name, resourceInputs, opts);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
exports.Pages = Pages;
|
|
91
|
+
/** @internal */
|
|
92
|
+
Pages.__pulumiType = 'auth0:index/pages:Pages';
|
|
93
|
+
//# sourceMappingURL=pages.js.map
|
package/pages.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pages.js","sourceRoot":"","sources":["../pages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AAvEL,sBAwEC;AA1DG,gBAAgB;AACO,kBAAY,GAAG,yBAAyB,CAAC"}
|
package/resourceServer.d.ts
CHANGED
|
@@ -70,9 +70,13 @@ export declare class ResourceServer extends pulumi.CustomResource {
|
|
|
70
70
|
*/
|
|
71
71
|
readonly name: pulumi.Output<string>;
|
|
72
72
|
/**
|
|
73
|
-
* List of permissions (scopes) used by this resource server.
|
|
73
|
+
* List of permissions (scopes) used by this resource server. Managing scopes through the `scopes` attribute is deprecated
|
|
74
|
+
* and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or
|
|
75
|
+
* `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION
|
|
76
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more
|
|
77
|
+
* info.
|
|
74
78
|
*
|
|
75
|
-
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be
|
|
79
|
+
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more info.
|
|
76
80
|
*/
|
|
77
81
|
readonly scopes: pulumi.Output<outputs.ResourceServerScope[] | undefined>;
|
|
78
82
|
/**
|
|
@@ -133,9 +137,13 @@ export interface ResourceServerState {
|
|
|
133
137
|
*/
|
|
134
138
|
name?: pulumi.Input<string>;
|
|
135
139
|
/**
|
|
136
|
-
* List of permissions (scopes) used by this resource server.
|
|
140
|
+
* List of permissions (scopes) used by this resource server. Managing scopes through the `scopes` attribute is deprecated
|
|
141
|
+
* and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or
|
|
142
|
+
* `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION
|
|
143
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more
|
|
144
|
+
* info.
|
|
137
145
|
*
|
|
138
|
-
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be
|
|
146
|
+
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more info.
|
|
139
147
|
*/
|
|
140
148
|
scopes?: pulumi.Input<pulumi.Input<inputs.ResourceServerScope>[]>;
|
|
141
149
|
/**
|
|
@@ -188,9 +196,13 @@ export interface ResourceServerArgs {
|
|
|
188
196
|
*/
|
|
189
197
|
name?: pulumi.Input<string>;
|
|
190
198
|
/**
|
|
191
|
-
* List of permissions (scopes) used by this resource server.
|
|
199
|
+
* List of permissions (scopes) used by this resource server. Managing scopes through the `scopes` attribute is deprecated
|
|
200
|
+
* and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or
|
|
201
|
+
* `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION
|
|
202
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more
|
|
203
|
+
* info.
|
|
192
204
|
*
|
|
193
|
-
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be
|
|
205
|
+
* @deprecated Managing scopes through the `scopes` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_resource_server_scope` or `auth0_resource_server_scopes` resources to manage role scopes instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#resource-server-scopes) for more info.
|
|
194
206
|
*/
|
|
195
207
|
scopes?: pulumi.Input<pulumi.Input<inputs.ResourceServerScope>[]>;
|
|
196
208
|
/**
|
package/resourceServer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resourceServer.js","sourceRoot":"","sources":["../resourceServer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"resourceServer.js","sourceRoot":"","sources":["../resourceServer.ts"],"names":[],"mappings":"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"}
|
package/role.d.ts
CHANGED
|
@@ -72,9 +72,12 @@ export declare class Role extends pulumi.CustomResource {
|
|
|
72
72
|
*/
|
|
73
73
|
readonly name: pulumi.Output<string>;
|
|
74
74
|
/**
|
|
75
|
-
* Configuration settings for permissions (scopes) attached to the role.
|
|
75
|
+
* Configuration settings for permissions (scopes) attached to the role. Managing permissions through the `permissions`
|
|
76
|
+
* attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or
|
|
77
|
+
* `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION
|
|
78
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
76
79
|
*
|
|
77
|
-
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be
|
|
80
|
+
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
78
81
|
*/
|
|
79
82
|
readonly permissions: pulumi.Output<outputs.RolePermission[] | undefined>;
|
|
80
83
|
/**
|
|
@@ -99,9 +102,12 @@ export interface RoleState {
|
|
|
99
102
|
*/
|
|
100
103
|
name?: pulumi.Input<string>;
|
|
101
104
|
/**
|
|
102
|
-
* Configuration settings for permissions (scopes) attached to the role.
|
|
105
|
+
* Configuration settings for permissions (scopes) attached to the role. Managing permissions through the `permissions`
|
|
106
|
+
* attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or
|
|
107
|
+
* `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION
|
|
108
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
103
109
|
*
|
|
104
|
-
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be
|
|
110
|
+
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
105
111
|
*/
|
|
106
112
|
permissions?: pulumi.Input<pulumi.Input<inputs.RolePermission>[]>;
|
|
107
113
|
}
|
|
@@ -118,9 +124,12 @@ export interface RoleArgs {
|
|
|
118
124
|
*/
|
|
119
125
|
name?: pulumi.Input<string>;
|
|
120
126
|
/**
|
|
121
|
-
* Configuration settings for permissions (scopes) attached to the role.
|
|
127
|
+
* Configuration settings for permissions (scopes) attached to the role. Managing permissions through the `permissions`
|
|
128
|
+
* attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or
|
|
129
|
+
* `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION
|
|
130
|
+
* GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
122
131
|
*
|
|
123
|
-
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be
|
|
132
|
+
* @deprecated Managing permissions through the `permissions` attribute is deprecated and it will be removed in a future major version. Migrate to the `auth0_role_permission` or `auth0_role_permissions` resource to manage role permissions instead. Check the [MIGRATION GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#role-permissions) for more info.
|
|
124
133
|
*/
|
|
125
134
|
permissions?: pulumi.Input<pulumi.Input<inputs.RolePermission>[]>;
|
|
126
135
|
}
|
package/role.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"role.js","sourceRoot":"","sources":["../role.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,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,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"role.js","sourceRoot":"","sources":["../role.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,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,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IA4BD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,MAAA,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,mCAAI,mBAAmB,CAAC;YAC7F,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AAtEL,oBAuEC;AAzDG,gBAAgB;AACO,iBAAY,GAAG,uBAAuB,CAAC"}
|
package/rule.d.ts
CHANGED
|
@@ -2,6 +2,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* With Auth0, you can create custom Javascript snippets that run in a secure, isolated sandbox as part of your authentication pipeline, which are otherwise known as rules. This resource allows you to create and manage rules. You can create global variable for use with rules by using the `auth0.RuleConfig` resource.
|
|
4
4
|
*
|
|
5
|
+
* !> This resource is deprecated. Refer to the [guide on how to migrate from rules to actions](https://auth0.com/docs/customize/actions/migrate/migrate-from-rules-to-actions) and manage your actions using the `auth0.Action` resource.
|
|
6
|
+
*
|
|
5
7
|
* !> This resource is deprecated. Refer to the [guide on how to migrate from hooks to actions](https://auth0.com/docs/customize/actions/migrate/migrate-from-hooks-to-actions)
|
|
6
8
|
* and manage your actions using the `auth0.Action` resource.
|
|
7
9
|
*
|
package/rule.js
CHANGED
|
@@ -8,6 +8,8 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* With Auth0, you can create custom Javascript snippets that run in a secure, isolated sandbox as part of your authentication pipeline, which are otherwise known as rules. This resource allows you to create and manage rules. You can create global variable for use with rules by using the `auth0.RuleConfig` resource.
|
|
10
10
|
*
|
|
11
|
+
* !> This resource is deprecated. Refer to the [guide on how to migrate from rules to actions](https://auth0.com/docs/customize/actions/migrate/migrate-from-rules-to-actions) and manage your actions using the `auth0.Action` resource.
|
|
12
|
+
*
|
|
11
13
|
* !> This resource is deprecated. Refer to the [guide on how to migrate from hooks to actions](https://auth0.com/docs/customize/actions/migrate/migrate-from-hooks-to-actions)
|
|
12
14
|
* and manage your actions using the `auth0.Action` resource.
|
|
13
15
|
*
|
package/rule.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rule.js","sourceRoot":"","sources":["../rule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"rule.js","sourceRoot":"","sources":["../rule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,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,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAkC,EAAE,IAAmC;QAC7F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAoC,CAAC;YACnD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAmC,CAAC;YACjD,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,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,IAAI,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACzD,CAAC;;AA1EL,oBA2EC;AA7DG,gBAAgB;AACO,iBAAY,GAAG,uBAAuB,CAAC"}
|
package/tenant.d.ts
CHANGED
|
@@ -86,7 +86,12 @@ export declare class Tenant extends pulumi.CustomResource {
|
|
|
86
86
|
*/
|
|
87
87
|
readonly allowedLogoutUrls: pulumi.Output<string[]>;
|
|
88
88
|
/**
|
|
89
|
-
* Configuration settings for change password page.
|
|
89
|
+
* Configuration settings for change password page. This attribute is deprecated in favor of the `auth0_pages` resource and
|
|
90
|
+
* it will be removed in a future major version. Check the
|
|
91
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
92
|
+
* info.
|
|
93
|
+
*
|
|
94
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
90
95
|
*/
|
|
91
96
|
readonly changePassword: pulumi.Output<outputs.TenantChangePassword>;
|
|
92
97
|
/**
|
|
@@ -106,7 +111,12 @@ export declare class Tenant extends pulumi.CustomResource {
|
|
|
106
111
|
*/
|
|
107
112
|
readonly enabledLocales: pulumi.Output<string[]>;
|
|
108
113
|
/**
|
|
109
|
-
* Configuration settings for error pages.
|
|
114
|
+
* Configuration settings for error pages. This attribute is deprecated in favor of the `auth0_pages` resource and it will
|
|
115
|
+
* be removed in a future major version. Check the
|
|
116
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
117
|
+
* info.
|
|
118
|
+
*
|
|
119
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
110
120
|
*/
|
|
111
121
|
readonly errorPage: pulumi.Output<outputs.TenantErrorPage>;
|
|
112
122
|
/**
|
|
@@ -118,7 +128,12 @@ export declare class Tenant extends pulumi.CustomResource {
|
|
|
118
128
|
*/
|
|
119
129
|
readonly friendlyName: pulumi.Output<string>;
|
|
120
130
|
/**
|
|
121
|
-
* Configuration settings for the Guardian MFA page.
|
|
131
|
+
* Configuration settings for the Guardian MFA page. This attribute is deprecated in favor of the `auth0_pages` resource
|
|
132
|
+
* and it will be removed in a future major version. Check the
|
|
133
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
134
|
+
* info.
|
|
135
|
+
*
|
|
136
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
122
137
|
*/
|
|
123
138
|
readonly guardianMfaPage: pulumi.Output<outputs.TenantGuardianMfaPage>;
|
|
124
139
|
/**
|
|
@@ -150,7 +165,12 @@ export declare class Tenant extends pulumi.CustomResource {
|
|
|
150
165
|
*/
|
|
151
166
|
readonly supportUrl: pulumi.Output<string>;
|
|
152
167
|
/**
|
|
153
|
-
* Configuration settings for Universal Login.
|
|
168
|
+
* Configuration settings for Universal Login. These configuration settings have been deprecated. Migrate to managing these
|
|
169
|
+
* settings through the `auth0_branding` resource. Check the
|
|
170
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login)
|
|
171
|
+
* for more info.
|
|
172
|
+
*
|
|
173
|
+
* @deprecated These configuration settings have been deprecated. Migrate to managing these settings through the `auth0_branding` resource. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login) for more info.
|
|
154
174
|
*/
|
|
155
175
|
readonly universalLogin: pulumi.Output<outputs.TenantUniversalLogin>;
|
|
156
176
|
/**
|
|
@@ -171,7 +191,12 @@ export interface TenantState {
|
|
|
171
191
|
*/
|
|
172
192
|
allowedLogoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
173
193
|
/**
|
|
174
|
-
* Configuration settings for change password page.
|
|
194
|
+
* Configuration settings for change password page. This attribute is deprecated in favor of the `auth0_pages` resource and
|
|
195
|
+
* it will be removed in a future major version. Check the
|
|
196
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
197
|
+
* info.
|
|
198
|
+
*
|
|
199
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
175
200
|
*/
|
|
176
201
|
changePassword?: pulumi.Input<inputs.TenantChangePassword>;
|
|
177
202
|
/**
|
|
@@ -191,7 +216,12 @@ export interface TenantState {
|
|
|
191
216
|
*/
|
|
192
217
|
enabledLocales?: pulumi.Input<pulumi.Input<string>[]>;
|
|
193
218
|
/**
|
|
194
|
-
* Configuration settings for error pages.
|
|
219
|
+
* Configuration settings for error pages. This attribute is deprecated in favor of the `auth0_pages` resource and it will
|
|
220
|
+
* be removed in a future major version. Check the
|
|
221
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
222
|
+
* info.
|
|
223
|
+
*
|
|
224
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
195
225
|
*/
|
|
196
226
|
errorPage?: pulumi.Input<inputs.TenantErrorPage>;
|
|
197
227
|
/**
|
|
@@ -203,7 +233,12 @@ export interface TenantState {
|
|
|
203
233
|
*/
|
|
204
234
|
friendlyName?: pulumi.Input<string>;
|
|
205
235
|
/**
|
|
206
|
-
* Configuration settings for the Guardian MFA page.
|
|
236
|
+
* Configuration settings for the Guardian MFA page. This attribute is deprecated in favor of the `auth0_pages` resource
|
|
237
|
+
* and it will be removed in a future major version. Check the
|
|
238
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
239
|
+
* info.
|
|
240
|
+
*
|
|
241
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
207
242
|
*/
|
|
208
243
|
guardianMfaPage?: pulumi.Input<inputs.TenantGuardianMfaPage>;
|
|
209
244
|
/**
|
|
@@ -235,7 +270,12 @@ export interface TenantState {
|
|
|
235
270
|
*/
|
|
236
271
|
supportUrl?: pulumi.Input<string>;
|
|
237
272
|
/**
|
|
238
|
-
* Configuration settings for Universal Login.
|
|
273
|
+
* Configuration settings for Universal Login. These configuration settings have been deprecated. Migrate to managing these
|
|
274
|
+
* settings through the `auth0_branding` resource. Check the
|
|
275
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login)
|
|
276
|
+
* for more info.
|
|
277
|
+
*
|
|
278
|
+
* @deprecated These configuration settings have been deprecated. Migrate to managing these settings through the `auth0_branding` resource. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login) for more info.
|
|
239
279
|
*/
|
|
240
280
|
universalLogin?: pulumi.Input<inputs.TenantUniversalLogin>;
|
|
241
281
|
}
|
|
@@ -248,7 +288,12 @@ export interface TenantArgs {
|
|
|
248
288
|
*/
|
|
249
289
|
allowedLogoutUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
250
290
|
/**
|
|
251
|
-
* Configuration settings for change password page.
|
|
291
|
+
* Configuration settings for change password page. This attribute is deprecated in favor of the `auth0_pages` resource and
|
|
292
|
+
* it will be removed in a future major version. Check the
|
|
293
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
294
|
+
* info.
|
|
295
|
+
*
|
|
296
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
252
297
|
*/
|
|
253
298
|
changePassword?: pulumi.Input<inputs.TenantChangePassword>;
|
|
254
299
|
/**
|
|
@@ -268,7 +313,12 @@ export interface TenantArgs {
|
|
|
268
313
|
*/
|
|
269
314
|
enabledLocales?: pulumi.Input<pulumi.Input<string>[]>;
|
|
270
315
|
/**
|
|
271
|
-
* Configuration settings for error pages.
|
|
316
|
+
* Configuration settings for error pages. This attribute is deprecated in favor of the `auth0_pages` resource and it will
|
|
317
|
+
* be removed in a future major version. Check the
|
|
318
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
319
|
+
* info.
|
|
320
|
+
*
|
|
321
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
272
322
|
*/
|
|
273
323
|
errorPage?: pulumi.Input<inputs.TenantErrorPage>;
|
|
274
324
|
/**
|
|
@@ -280,7 +330,12 @@ export interface TenantArgs {
|
|
|
280
330
|
*/
|
|
281
331
|
friendlyName?: pulumi.Input<string>;
|
|
282
332
|
/**
|
|
283
|
-
* Configuration settings for the Guardian MFA page.
|
|
333
|
+
* Configuration settings for the Guardian MFA page. This attribute is deprecated in favor of the `auth0_pages` resource
|
|
334
|
+
* and it will be removed in a future major version. Check the
|
|
335
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more
|
|
336
|
+
* info.
|
|
337
|
+
*
|
|
338
|
+
* @deprecated This attribute is deprecated in favor of the `auth0_pages` resource and it will be removed in a future major version. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-pages) for more info.
|
|
284
339
|
*/
|
|
285
340
|
guardianMfaPage?: pulumi.Input<inputs.TenantGuardianMfaPage>;
|
|
286
341
|
/**
|
|
@@ -312,7 +367,12 @@ export interface TenantArgs {
|
|
|
312
367
|
*/
|
|
313
368
|
supportUrl?: pulumi.Input<string>;
|
|
314
369
|
/**
|
|
315
|
-
* Configuration settings for Universal Login.
|
|
370
|
+
* Configuration settings for Universal Login. These configuration settings have been deprecated. Migrate to managing these
|
|
371
|
+
* settings through the `auth0_branding` resource. Check the
|
|
372
|
+
* [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login)
|
|
373
|
+
* for more info.
|
|
374
|
+
*
|
|
375
|
+
* @deprecated These configuration settings have been deprecated. Migrate to managing these settings through the `auth0_branding` resource. Check the [MIGRATION_GUIDE](https://github.com/auth0/terraform-provider-auth0/blob/main/MIGRATION_GUIDE.md#tenant-universal-login) for more info.
|
|
316
376
|
*/
|
|
317
377
|
universalLogin?: pulumi.Input<inputs.TenantUniversalLogin>;
|
|
318
378
|
}
|
package/tenant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+DG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"tenant.js","sourceRoot":"","sources":["../tenant.ts"],"names":[],"mappings":"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"}
|
package/triggerBinding.d.ts
CHANGED
|
@@ -2,10 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* With this resource, you can bind actions to a trigger. Once actions are created and deployed, they can be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions reflects the order in which they will be executed during the appropriate flow.
|
|
6
|
-
*
|
|
7
|
-
* !> This resource has been deprecated in favor of the `auth0.TriggerActions` resource.
|
|
8
|
-
*
|
|
9
5
|
* ## Example Usage
|
|
10
6
|
*
|
|
11
7
|
* ```typescript
|
package/triggerBinding.js
CHANGED
|
@@ -6,10 +6,6 @@ exports.TriggerBinding = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* With this resource, you can bind actions to a trigger. Once actions are created and deployed, they can be attached (i.e. bound) to a trigger so that it will be executed as part of a flow. The list of actions reflects the order in which they will be executed during the appropriate flow.
|
|
10
|
-
*
|
|
11
|
-
* !> This resource has been deprecated in favor of the `auth0.TriggerActions` resource.
|
|
12
|
-
*
|
|
13
9
|
* ## Example Usage
|
|
14
10
|
*
|
|
15
11
|
* ```typescript
|
package/triggerBinding.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"triggerBinding.js","sourceRoot":"","sources":["../triggerBinding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"triggerBinding.js","sourceRoot":"","sources":["../triggerBinding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,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,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAsD,EAAE,IAAmC;QACjH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA8C,CAAC;YAC7D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;aAAM;YACH,MAAM,IAAI,GAAG,WAA6C,CAAC;YAC3D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACnE,CAAC;;AAjEL,wCAkEC;AApDG,gBAAgB;AACO,2BAAY,GAAG,2CAA2C,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -335,9 +335,9 @@ export interface BrandingThemeWidget {
|
|
|
335
335
|
}
|
|
336
336
|
export interface BrandingUniversalLogin {
|
|
337
337
|
/**
|
|
338
|
-
* The
|
|
338
|
+
* The html template for the New Universal Login Experience.
|
|
339
339
|
*/
|
|
340
|
-
body
|
|
340
|
+
body: pulumi.Input<string>;
|
|
341
341
|
}
|
|
342
342
|
export interface ClientAddons {
|
|
343
343
|
aws?: pulumi.Input<{
|
|
@@ -869,7 +869,7 @@ export interface ConnectionOptions {
|
|
|
869
869
|
*/
|
|
870
870
|
twilioToken?: pulumi.Input<string>;
|
|
871
871
|
/**
|
|
872
|
-
* Value can be `backChannel` or `frontChannel`.
|
|
872
|
+
* Value can be `backChannel` or `frontChannel`. Front Channel will use OIDC protocol with `response_mode=form_post` and `response_type=id_token`. Back Channel will use `response_type=code`.
|
|
873
873
|
*/
|
|
874
874
|
type?: pulumi.Input<string>;
|
|
875
875
|
/**
|
|
@@ -967,7 +967,7 @@ export interface EmailCredentials {
|
|
|
967
967
|
*/
|
|
968
968
|
apiKey?: pulumi.Input<string>;
|
|
969
969
|
/**
|
|
970
|
-
* API User for your email service.
|
|
970
|
+
* API User for your email service. This field is not accepted by the API any more so it will be removed in a future major version.
|
|
971
971
|
*
|
|
972
972
|
* @deprecated This field is not accepted by the API any more so it will be removed soon.
|
|
973
973
|
*/
|
|
@@ -1459,6 +1459,50 @@ export interface OrganizationConnectionsEnabledConnection {
|
|
|
1459
1459
|
*/
|
|
1460
1460
|
connectionId: pulumi.Input<string>;
|
|
1461
1461
|
}
|
|
1462
|
+
export interface PagesChangePassword {
|
|
1463
|
+
/**
|
|
1464
|
+
* Indicates whether to use the custom Reset Password HTML (`true`) or the default Auth0 page (`false`).
|
|
1465
|
+
*/
|
|
1466
|
+
enabled: pulumi.Input<boolean>;
|
|
1467
|
+
/**
|
|
1468
|
+
* Customized content for the Reset Password page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
1469
|
+
*/
|
|
1470
|
+
html: pulumi.Input<string>;
|
|
1471
|
+
}
|
|
1472
|
+
export interface PagesError {
|
|
1473
|
+
/**
|
|
1474
|
+
* Customized content for the Error page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
1475
|
+
*/
|
|
1476
|
+
html?: pulumi.Input<string>;
|
|
1477
|
+
/**
|
|
1478
|
+
* Indicates whether to show the link to logs as part of the default error page.
|
|
1479
|
+
*/
|
|
1480
|
+
showLogLink: pulumi.Input<boolean>;
|
|
1481
|
+
/**
|
|
1482
|
+
* URL to redirect to when an error occurs, instead of showing the default error page.
|
|
1483
|
+
*/
|
|
1484
|
+
url?: pulumi.Input<string>;
|
|
1485
|
+
}
|
|
1486
|
+
export interface PagesGuardianMfa {
|
|
1487
|
+
/**
|
|
1488
|
+
* Indicates whether to use the custom Guardian MFA HTML (`true`) or the default Auth0 page (`false`).
|
|
1489
|
+
*/
|
|
1490
|
+
enabled: pulumi.Input<boolean>;
|
|
1491
|
+
/**
|
|
1492
|
+
* Customized content for the Guardian MFA page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
1493
|
+
*/
|
|
1494
|
+
html: pulumi.Input<string>;
|
|
1495
|
+
}
|
|
1496
|
+
export interface PagesLogin {
|
|
1497
|
+
/**
|
|
1498
|
+
* Indicates whether to use the custom Login page HTML (`true`) or the default Auth0 page (`false`).
|
|
1499
|
+
*/
|
|
1500
|
+
enabled: pulumi.Input<boolean>;
|
|
1501
|
+
/**
|
|
1502
|
+
* Customized content for the Login page. HTML format with supported [Liquid syntax](https://github.com/Shopify/liquid/wiki/Liquid-for-Designers).
|
|
1503
|
+
*/
|
|
1504
|
+
html: pulumi.Input<string>;
|
|
1505
|
+
}
|
|
1462
1506
|
export interface ResourceServerScope {
|
|
1463
1507
|
/**
|
|
1464
1508
|
* Description of the permission (scope).
|