@pulumi/auth0 2.3.0 → 2.3.1
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 +171 -0
- package/action.js +113 -0
- package/action.js.map +1 -0
- package/branding.d.ts +118 -0
- package/branding.js +80 -0
- package/branding.js.map +1 -0
- package/client.d.ts +39 -0
- package/client.js +9 -0
- package/client.js.map +1 -1
- package/customDomain.d.ts +8 -2
- package/customDomain.js +0 -3
- package/customDomain.js.map +1 -1
- package/customDomainVerification.d.ts +48 -0
- package/customDomainVerification.js +54 -0
- package/customDomainVerification.js.map +1 -0
- package/emailTemplate.d.ts +3 -3
- package/globalClient.d.ts +9 -0
- package/globalClient.js +6 -0
- package/globalClient.js.map +1 -1
- package/guardian.d.ts +3 -3
- package/hook.d.ts +6 -3
- package/hook.js +3 -0
- package/hook.js.map +1 -1
- package/index.d.ts +4 -0
- package/index.js +20 -0
- package/index.js.map +1 -1
- package/logStream.d.ts +43 -6
- package/logStream.js +19 -0
- package/logStream.js.map +1 -1
- package/organization.d.ts +146 -0
- package/organization.js +93 -0
- package/organization.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/prompt.d.ts +10 -0
- package/prompt.js +1 -0
- package/prompt.js.map +1 -1
- package/types/input.d.ts +137 -2
- package/types/output.d.ts +137 -2
package/action.d.ts
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* Actions are secure, tenant-specific, versioned functions written in Node.js that
|
|
5
|
+
* execute at certain points during the Auth0 runtime. Actions are used to
|
|
6
|
+
* customize and extend Auth0's capabilities with custom logic.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
13
|
+
*
|
|
14
|
+
* const myAction = new auth0.Action("my_action", {
|
|
15
|
+
* code: `/**
|
|
16
|
+
* * Handler that will be called during the execution of a PostLogin flow.
|
|
17
|
+
* *
|
|
18
|
+
* * @param {Event} event - Details about the user and the context in which they are logging in.
|
|
19
|
+
* * @param {PostLoginAPI} api - Interface whose methods can be used to change the behavior of the login.
|
|
20
|
+
* */
|
|
21
|
+
* exports.onExecutePostLogin = async (event, api) => {
|
|
22
|
+
* console.log(event)
|
|
23
|
+
* };
|
|
24
|
+
* `,
|
|
25
|
+
* deploy: true,
|
|
26
|
+
* supportedTriggers: {
|
|
27
|
+
* id: "post-login",
|
|
28
|
+
* version: "v2",
|
|
29
|
+
* },
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ## Import
|
|
34
|
+
*
|
|
35
|
+
* An action can be imported using the action's ID, e.g.
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import auth0:index/action:Action example ...
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* ~> For security reasons importing `secrets` is not allowed. Therefore it is advised to import the action without secrets and adding them back after the
|
|
42
|
+
*
|
|
43
|
+
* action has been imported.
|
|
44
|
+
*/
|
|
45
|
+
export declare class Action extends pulumi.CustomResource {
|
|
46
|
+
/**
|
|
47
|
+
* Get an existing Action resource's state with the given name, ID, and optional extra
|
|
48
|
+
* properties used to qualify the lookup.
|
|
49
|
+
*
|
|
50
|
+
* @param name The _unique_ name of the resulting resource.
|
|
51
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
52
|
+
* @param state Any extra arguments used during the lookup.
|
|
53
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
54
|
+
*/
|
|
55
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ActionState, opts?: pulumi.CustomResourceOptions): Action;
|
|
56
|
+
/**
|
|
57
|
+
* Returns true if the given object is an instance of Action. This is designed to work even
|
|
58
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
59
|
+
*/
|
|
60
|
+
static isInstance(obj: any): obj is Action;
|
|
61
|
+
/**
|
|
62
|
+
* The source code of the action.
|
|
63
|
+
*/
|
|
64
|
+
readonly code: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* List of third party npm modules, and their versions, that this action depends on
|
|
67
|
+
*/
|
|
68
|
+
readonly dependencies: pulumi.Output<outputs.ActionDependency[] | undefined>;
|
|
69
|
+
/**
|
|
70
|
+
* Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Default is `false`.
|
|
71
|
+
*/
|
|
72
|
+
readonly deploy: pulumi.Output<boolean | undefined>;
|
|
73
|
+
/**
|
|
74
|
+
* Secret name.
|
|
75
|
+
*/
|
|
76
|
+
readonly name: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* The Node runtime. For example `node16`, defaults to `node12`
|
|
79
|
+
*/
|
|
80
|
+
readonly runtime: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* List of secrets that are included in an action or a version of an action
|
|
83
|
+
*/
|
|
84
|
+
readonly secrets: pulumi.Output<outputs.ActionSecret[] | undefined>;
|
|
85
|
+
/**
|
|
86
|
+
* List of triggers that this action supports. At this time, an action can only target a single trigger at a time
|
|
87
|
+
*/
|
|
88
|
+
readonly supportedTriggers: pulumi.Output<outputs.ActionSupportedTriggers>;
|
|
89
|
+
/**
|
|
90
|
+
* Version ID of the action. This value is available if `deploy` is set to true
|
|
91
|
+
*/
|
|
92
|
+
readonly versionId: pulumi.Output<string>;
|
|
93
|
+
/**
|
|
94
|
+
* Create a Action resource with the given unique name, arguments, and options.
|
|
95
|
+
*
|
|
96
|
+
* @param name The _unique_ name of the resource.
|
|
97
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
98
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
99
|
+
*/
|
|
100
|
+
constructor(name: string, args: ActionArgs, opts?: pulumi.CustomResourceOptions);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Input properties used for looking up and filtering Action resources.
|
|
104
|
+
*/
|
|
105
|
+
export interface ActionState {
|
|
106
|
+
/**
|
|
107
|
+
* The source code of the action.
|
|
108
|
+
*/
|
|
109
|
+
code?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* List of third party npm modules, and their versions, that this action depends on
|
|
112
|
+
*/
|
|
113
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.ActionDependency>[]>;
|
|
114
|
+
/**
|
|
115
|
+
* Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Default is `false`.
|
|
116
|
+
*/
|
|
117
|
+
deploy?: pulumi.Input<boolean>;
|
|
118
|
+
/**
|
|
119
|
+
* Secret name.
|
|
120
|
+
*/
|
|
121
|
+
name?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* The Node runtime. For example `node16`, defaults to `node12`
|
|
124
|
+
*/
|
|
125
|
+
runtime?: pulumi.Input<string>;
|
|
126
|
+
/**
|
|
127
|
+
* List of secrets that are included in an action or a version of an action
|
|
128
|
+
*/
|
|
129
|
+
secrets?: pulumi.Input<pulumi.Input<inputs.ActionSecret>[]>;
|
|
130
|
+
/**
|
|
131
|
+
* List of triggers that this action supports. At this time, an action can only target a single trigger at a time
|
|
132
|
+
*/
|
|
133
|
+
supportedTriggers?: pulumi.Input<inputs.ActionSupportedTriggers>;
|
|
134
|
+
/**
|
|
135
|
+
* Version ID of the action. This value is available if `deploy` is set to true
|
|
136
|
+
*/
|
|
137
|
+
versionId?: pulumi.Input<string>;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* The set of arguments for constructing a Action resource.
|
|
141
|
+
*/
|
|
142
|
+
export interface ActionArgs {
|
|
143
|
+
/**
|
|
144
|
+
* The source code of the action.
|
|
145
|
+
*/
|
|
146
|
+
code: pulumi.Input<string>;
|
|
147
|
+
/**
|
|
148
|
+
* List of third party npm modules, and their versions, that this action depends on
|
|
149
|
+
*/
|
|
150
|
+
dependencies?: pulumi.Input<pulumi.Input<inputs.ActionDependency>[]>;
|
|
151
|
+
/**
|
|
152
|
+
* Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately. Default is `false`.
|
|
153
|
+
*/
|
|
154
|
+
deploy?: pulumi.Input<boolean>;
|
|
155
|
+
/**
|
|
156
|
+
* Secret name.
|
|
157
|
+
*/
|
|
158
|
+
name?: pulumi.Input<string>;
|
|
159
|
+
/**
|
|
160
|
+
* The Node runtime. For example `node16`, defaults to `node12`
|
|
161
|
+
*/
|
|
162
|
+
runtime?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* List of secrets that are included in an action or a version of an action
|
|
165
|
+
*/
|
|
166
|
+
secrets?: pulumi.Input<pulumi.Input<inputs.ActionSecret>[]>;
|
|
167
|
+
/**
|
|
168
|
+
* List of triggers that this action supports. At this time, an action can only target a single trigger at a time
|
|
169
|
+
*/
|
|
170
|
+
supportedTriggers: pulumi.Input<inputs.ActionSupportedTriggers>;
|
|
171
|
+
}
|
package/action.js
ADDED
|
@@ -0,0 +1,113 @@
|
|
|
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.Action = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Actions are secure, tenant-specific, versioned functions written in Node.js that
|
|
10
|
+
* execute at certain points during the Auth0 runtime. Actions are used to
|
|
11
|
+
* customize and extend Auth0's capabilities with custom logic.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
18
|
+
*
|
|
19
|
+
* const myAction = new auth0.Action("my_action", {
|
|
20
|
+
* code: `/**
|
|
21
|
+
* * Handler that will be called during the execution of a PostLogin flow.
|
|
22
|
+
* *
|
|
23
|
+
* * @param {Event} event - Details about the user and the context in which they are logging in.
|
|
24
|
+
* * @param {PostLoginAPI} api - Interface whose methods can be used to change the behavior of the login.
|
|
25
|
+
* */
|
|
26
|
+
* exports.onExecutePostLogin = async (event, api) => {
|
|
27
|
+
* console.log(event)
|
|
28
|
+
* };
|
|
29
|
+
* `,
|
|
30
|
+
* deploy: true,
|
|
31
|
+
* supportedTriggers: {
|
|
32
|
+
* id: "post-login",
|
|
33
|
+
* version: "v2",
|
|
34
|
+
* },
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* ## Import
|
|
39
|
+
*
|
|
40
|
+
* An action can be imported using the action's ID, e.g.
|
|
41
|
+
*
|
|
42
|
+
* ```sh
|
|
43
|
+
* $ pulumi import auth0:index/action:Action example ...
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* ~> For security reasons importing `secrets` is not allowed. Therefore it is advised to import the action without secrets and adding them back after the
|
|
47
|
+
*
|
|
48
|
+
* action has been imported.
|
|
49
|
+
*/
|
|
50
|
+
class Action extends pulumi.CustomResource {
|
|
51
|
+
constructor(name, argsOrState, opts) {
|
|
52
|
+
let inputs = {};
|
|
53
|
+
opts = opts || {};
|
|
54
|
+
if (opts.id) {
|
|
55
|
+
const state = argsOrState;
|
|
56
|
+
inputs["code"] = state ? state.code : undefined;
|
|
57
|
+
inputs["dependencies"] = state ? state.dependencies : undefined;
|
|
58
|
+
inputs["deploy"] = state ? state.deploy : undefined;
|
|
59
|
+
inputs["name"] = state ? state.name : undefined;
|
|
60
|
+
inputs["runtime"] = state ? state.runtime : undefined;
|
|
61
|
+
inputs["secrets"] = state ? state.secrets : undefined;
|
|
62
|
+
inputs["supportedTriggers"] = state ? state.supportedTriggers : undefined;
|
|
63
|
+
inputs["versionId"] = state ? state.versionId : undefined;
|
|
64
|
+
}
|
|
65
|
+
else {
|
|
66
|
+
const args = argsOrState;
|
|
67
|
+
if ((!args || args.code === undefined) && !opts.urn) {
|
|
68
|
+
throw new Error("Missing required property 'code'");
|
|
69
|
+
}
|
|
70
|
+
if ((!args || args.supportedTriggers === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'supportedTriggers'");
|
|
72
|
+
}
|
|
73
|
+
inputs["code"] = args ? args.code : undefined;
|
|
74
|
+
inputs["dependencies"] = args ? args.dependencies : undefined;
|
|
75
|
+
inputs["deploy"] = args ? args.deploy : undefined;
|
|
76
|
+
inputs["name"] = args ? args.name : undefined;
|
|
77
|
+
inputs["runtime"] = args ? args.runtime : undefined;
|
|
78
|
+
inputs["secrets"] = args ? args.secrets : undefined;
|
|
79
|
+
inputs["supportedTriggers"] = args ? args.supportedTriggers : undefined;
|
|
80
|
+
inputs["versionId"] = undefined /*out*/;
|
|
81
|
+
}
|
|
82
|
+
if (!opts.version) {
|
|
83
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
84
|
+
}
|
|
85
|
+
super(Action.__pulumiType, name, inputs, opts);
|
|
86
|
+
}
|
|
87
|
+
/**
|
|
88
|
+
* Get an existing Action resource's state with the given name, ID, and optional extra
|
|
89
|
+
* properties used to qualify the lookup.
|
|
90
|
+
*
|
|
91
|
+
* @param name The _unique_ name of the resulting resource.
|
|
92
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
93
|
+
* @param state Any extra arguments used during the lookup.
|
|
94
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
95
|
+
*/
|
|
96
|
+
static get(name, id, state, opts) {
|
|
97
|
+
return new Action(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Returns true if the given object is an instance of Action. This is designed to work even
|
|
101
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
102
|
+
*/
|
|
103
|
+
static isInstance(obj) {
|
|
104
|
+
if (obj === undefined || obj === null) {
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
return obj['__pulumiType'] === Action.__pulumiType;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
exports.Action = Action;
|
|
111
|
+
/** @internal */
|
|
112
|
+
Action.__pulumiType = 'auth0:index/action:Action';
|
|
113
|
+
//# sourceMappingURL=action.js.map
|
package/action.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.js","sourceRoot":"","sources":["../action.ts"],"names":[],"mappings":"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"}
|
package/branding.d.ts
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* With Auth0, you can setting logo, color to maintain a consistent service brand. This resource allows you to manage a branding within your Auth0 tenant.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
11
|
+
*
|
|
12
|
+
* const myBrand = new auth0.Branding("my_brand", {
|
|
13
|
+
* colors: {
|
|
14
|
+
* pageBackground: "#000000",
|
|
15
|
+
* primary: "#0059d6",
|
|
16
|
+
* },
|
|
17
|
+
* logoUrl: "https://mycompany.org/logo.png",
|
|
18
|
+
* universalLogin: {
|
|
19
|
+
* body: "<!DOCTYPE html><html><head>{%- auth0:head -%}</head><body>{%- auth0:widget -%}</body></html>",
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare class Branding extends pulumi.CustomResource {
|
|
25
|
+
/**
|
|
26
|
+
* Get an existing Branding resource's state with the given name, ID, and optional extra
|
|
27
|
+
* properties used to qualify the lookup.
|
|
28
|
+
*
|
|
29
|
+
* @param name The _unique_ name of the resulting resource.
|
|
30
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
31
|
+
* @param state Any extra arguments used during the lookup.
|
|
32
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
33
|
+
*/
|
|
34
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: BrandingState, opts?: pulumi.CustomResourceOptions): Branding;
|
|
35
|
+
/**
|
|
36
|
+
* Returns true if the given object is an instance of Branding. This is designed to work even
|
|
37
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
38
|
+
*/
|
|
39
|
+
static isInstance(obj: any): obj is Branding;
|
|
40
|
+
/**
|
|
41
|
+
* List(Resource). Configuration settings for colors for branding. See Colors.
|
|
42
|
+
*/
|
|
43
|
+
readonly colors: pulumi.Output<outputs.BrandingColors | undefined>;
|
|
44
|
+
/**
|
|
45
|
+
* String. URL for the favicon.
|
|
46
|
+
*/
|
|
47
|
+
readonly faviconUrl: pulumi.Output<string>;
|
|
48
|
+
/**
|
|
49
|
+
* List(Resource). Configuration settings to customize the font. See Font.
|
|
50
|
+
*/
|
|
51
|
+
readonly font: pulumi.Output<outputs.BrandingFont | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* String. URL of logo for branding.
|
|
54
|
+
*/
|
|
55
|
+
readonly logoUrl: pulumi.Output<string>;
|
|
56
|
+
/**
|
|
57
|
+
* List(Resource). Configuration settings for Universal Login. See Universal Login. This capability can only be used if the tenant has [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
58
|
+
*/
|
|
59
|
+
readonly universalLogin: pulumi.Output<outputs.BrandingUniversalLogin | undefined>;
|
|
60
|
+
/**
|
|
61
|
+
* Create a Branding resource with the given unique name, arguments, and options.
|
|
62
|
+
*
|
|
63
|
+
* @param name The _unique_ name of the resource.
|
|
64
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
65
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
66
|
+
*/
|
|
67
|
+
constructor(name: string, args?: BrandingArgs, opts?: pulumi.CustomResourceOptions);
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Input properties used for looking up and filtering Branding resources.
|
|
71
|
+
*/
|
|
72
|
+
export interface BrandingState {
|
|
73
|
+
/**
|
|
74
|
+
* List(Resource). Configuration settings for colors for branding. See Colors.
|
|
75
|
+
*/
|
|
76
|
+
colors?: pulumi.Input<inputs.BrandingColors>;
|
|
77
|
+
/**
|
|
78
|
+
* String. URL for the favicon.
|
|
79
|
+
*/
|
|
80
|
+
faviconUrl?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* List(Resource). Configuration settings to customize the font. See Font.
|
|
83
|
+
*/
|
|
84
|
+
font?: pulumi.Input<inputs.BrandingFont>;
|
|
85
|
+
/**
|
|
86
|
+
* String. URL of logo for branding.
|
|
87
|
+
*/
|
|
88
|
+
logoUrl?: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* List(Resource). Configuration settings for Universal Login. See Universal Login. This capability can only be used if the tenant has [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
91
|
+
*/
|
|
92
|
+
universalLogin?: pulumi.Input<inputs.BrandingUniversalLogin>;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* The set of arguments for constructing a Branding resource.
|
|
96
|
+
*/
|
|
97
|
+
export interface BrandingArgs {
|
|
98
|
+
/**
|
|
99
|
+
* List(Resource). Configuration settings for colors for branding. See Colors.
|
|
100
|
+
*/
|
|
101
|
+
colors?: pulumi.Input<inputs.BrandingColors>;
|
|
102
|
+
/**
|
|
103
|
+
* String. URL for the favicon.
|
|
104
|
+
*/
|
|
105
|
+
faviconUrl?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* List(Resource). Configuration settings to customize the font. See Font.
|
|
108
|
+
*/
|
|
109
|
+
font?: pulumi.Input<inputs.BrandingFont>;
|
|
110
|
+
/**
|
|
111
|
+
* String. URL of logo for branding.
|
|
112
|
+
*/
|
|
113
|
+
logoUrl?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* List(Resource). Configuration settings for Universal Login. See Universal Login. This capability can only be used if the tenant has [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
116
|
+
*/
|
|
117
|
+
universalLogin?: pulumi.Input<inputs.BrandingUniversalLogin>;
|
|
118
|
+
}
|
package/branding.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
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.Branding = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* With Auth0, you can setting logo, color to maintain a consistent service brand. This resource allows you to manage a branding within your Auth0 tenant.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myBrand = new auth0.Branding("my_brand", {
|
|
18
|
+
* colors: {
|
|
19
|
+
* pageBackground: "#000000",
|
|
20
|
+
* primary: "#0059d6",
|
|
21
|
+
* },
|
|
22
|
+
* logoUrl: "https://mycompany.org/logo.png",
|
|
23
|
+
* universalLogin: {
|
|
24
|
+
* body: "<!DOCTYPE html><html><head>{%- auth0:head -%}</head><body>{%- auth0:widget -%}</body></html>",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
class Branding extends pulumi.CustomResource {
|
|
30
|
+
constructor(name, argsOrState, opts) {
|
|
31
|
+
let inputs = {};
|
|
32
|
+
opts = opts || {};
|
|
33
|
+
if (opts.id) {
|
|
34
|
+
const state = argsOrState;
|
|
35
|
+
inputs["colors"] = state ? state.colors : undefined;
|
|
36
|
+
inputs["faviconUrl"] = state ? state.faviconUrl : undefined;
|
|
37
|
+
inputs["font"] = state ? state.font : undefined;
|
|
38
|
+
inputs["logoUrl"] = state ? state.logoUrl : undefined;
|
|
39
|
+
inputs["universalLogin"] = state ? state.universalLogin : undefined;
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
const args = argsOrState;
|
|
43
|
+
inputs["colors"] = args ? args.colors : undefined;
|
|
44
|
+
inputs["faviconUrl"] = args ? args.faviconUrl : undefined;
|
|
45
|
+
inputs["font"] = args ? args.font : undefined;
|
|
46
|
+
inputs["logoUrl"] = args ? args.logoUrl : undefined;
|
|
47
|
+
inputs["universalLogin"] = args ? args.universalLogin : undefined;
|
|
48
|
+
}
|
|
49
|
+
if (!opts.version) {
|
|
50
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
51
|
+
}
|
|
52
|
+
super(Branding.__pulumiType, name, inputs, opts);
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Get an existing Branding resource's state with the given name, ID, and optional extra
|
|
56
|
+
* properties used to qualify the lookup.
|
|
57
|
+
*
|
|
58
|
+
* @param name The _unique_ name of the resulting resource.
|
|
59
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
60
|
+
* @param state Any extra arguments used during the lookup.
|
|
61
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
62
|
+
*/
|
|
63
|
+
static get(name, id, state, opts) {
|
|
64
|
+
return new Branding(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Returns true if the given object is an instance of Branding. This is designed to work even
|
|
68
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
69
|
+
*/
|
|
70
|
+
static isInstance(obj) {
|
|
71
|
+
if (obj === undefined || obj === null) {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
return obj['__pulumiType'] === Branding.__pulumiType;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
exports.Branding = Branding;
|
|
78
|
+
/** @internal */
|
|
79
|
+
Branding.__pulumiType = 'auth0:index/branding:Branding';
|
|
80
|
+
//# sourceMappingURL=branding.js.map
|
package/branding.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"branding.js","sourceRoot":"","sources":["../branding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAyD/C,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IACrD,CAAC;IA9ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,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,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;;AA1BL,4BAgFC;AAlEG,gBAAgB;AACO,qBAAY,GAAG,+BAA+B,CAAC"}
|
package/client.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
31
31
|
* passthroughClaimsWithNoMapping: false,
|
|
32
32
|
* },
|
|
33
33
|
* },
|
|
34
|
+
* allowedClients: ["https://allowed.example.com"],
|
|
34
35
|
* allowedLogoutUrls: ["https://example.com"],
|
|
35
36
|
* allowedOrigins: ["https://example.com"],
|
|
36
37
|
* appType: "non_interactive",
|
|
@@ -64,6 +65,8 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
64
65
|
* },
|
|
65
66
|
* },
|
|
66
67
|
* oidcConformant: false,
|
|
68
|
+
* organizationRequireBehavior: "no_prompt",
|
|
69
|
+
* organizationUsage: "deny",
|
|
67
70
|
* refreshToken: {
|
|
68
71
|
* expirationType: "expiring",
|
|
69
72
|
* idleTokenLifetime: 1296000,
|
|
@@ -98,6 +101,10 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
98
101
|
* List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.
|
|
99
102
|
*/
|
|
100
103
|
readonly addons: pulumi.Output<outputs.ClientAddons | undefined>;
|
|
104
|
+
/**
|
|
105
|
+
* List(String). List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
|
|
106
|
+
*/
|
|
107
|
+
readonly allowedClients: pulumi.Output<string[] | undefined>;
|
|
101
108
|
/**
|
|
102
109
|
* List(String). URLs that Auth0 may redirect to after logout.
|
|
103
110
|
*/
|
|
@@ -195,6 +202,14 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
195
202
|
* Boolean. Indicates whether or not this client will conform to strict OIDC specifications.
|
|
196
203
|
*/
|
|
197
204
|
readonly oidcConformant: pulumi.Output<boolean>;
|
|
205
|
+
/**
|
|
206
|
+
* String. Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or `preLoginPrompt`.
|
|
207
|
+
*/
|
|
208
|
+
readonly organizationRequireBehavior: pulumi.Output<string | undefined>;
|
|
209
|
+
/**
|
|
210
|
+
* String. Defines how to proceed during an authentication transaction with regards an organization. Can be `deny` (default), `allow` or `require`.
|
|
211
|
+
*/
|
|
212
|
+
readonly organizationUsage: pulumi.Output<string | undefined>;
|
|
198
213
|
/**
|
|
199
214
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
200
215
|
*/
|
|
@@ -232,6 +247,10 @@ export interface ClientState {
|
|
|
232
247
|
* List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.
|
|
233
248
|
*/
|
|
234
249
|
addons?: pulumi.Input<inputs.ClientAddons>;
|
|
250
|
+
/**
|
|
251
|
+
* List(String). List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
|
|
252
|
+
*/
|
|
253
|
+
allowedClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
235
254
|
/**
|
|
236
255
|
* List(String). URLs that Auth0 may redirect to after logout.
|
|
237
256
|
*/
|
|
@@ -329,6 +348,14 @@ export interface ClientState {
|
|
|
329
348
|
* Boolean. Indicates whether or not this client will conform to strict OIDC specifications.
|
|
330
349
|
*/
|
|
331
350
|
oidcConformant?: pulumi.Input<boolean>;
|
|
351
|
+
/**
|
|
352
|
+
* String. Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or `preLoginPrompt`.
|
|
353
|
+
*/
|
|
354
|
+
organizationRequireBehavior?: pulumi.Input<string>;
|
|
355
|
+
/**
|
|
356
|
+
* String. Defines how to proceed during an authentication transaction with regards an organization. Can be `deny` (default), `allow` or `require`.
|
|
357
|
+
*/
|
|
358
|
+
organizationUsage?: pulumi.Input<string>;
|
|
332
359
|
/**
|
|
333
360
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
334
361
|
*/
|
|
@@ -358,6 +385,10 @@ export interface ClientArgs {
|
|
|
358
385
|
* List(Resource). Configuration settings for add-ons for this client. For details, see Add-ons.
|
|
359
386
|
*/
|
|
360
387
|
addons?: pulumi.Input<inputs.ClientAddons>;
|
|
388
|
+
/**
|
|
389
|
+
* List(String). List of applications ID's that will be allowed to make delegation request. By default, all applications will be allowed.
|
|
390
|
+
*/
|
|
391
|
+
allowedClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
361
392
|
/**
|
|
362
393
|
* List(String). URLs that Auth0 may redirect to after logout.
|
|
363
394
|
*/
|
|
@@ -449,6 +480,14 @@ export interface ClientArgs {
|
|
|
449
480
|
* Boolean. Indicates whether or not this client will conform to strict OIDC specifications.
|
|
450
481
|
*/
|
|
451
482
|
oidcConformant?: pulumi.Input<boolean>;
|
|
483
|
+
/**
|
|
484
|
+
* String. Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default) or `preLoginPrompt`.
|
|
485
|
+
*/
|
|
486
|
+
organizationRequireBehavior?: pulumi.Input<string>;
|
|
487
|
+
/**
|
|
488
|
+
* String. Defines how to proceed during an authentication transaction with regards an organization. Can be `deny` (default), `allow` or `require`.
|
|
489
|
+
*/
|
|
490
|
+
organizationUsage?: pulumi.Input<string>;
|
|
452
491
|
/**
|
|
453
492
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
454
493
|
*/
|
package/client.js
CHANGED
|
@@ -36,6 +36,7 @@ const utilities = require("./utilities");
|
|
|
36
36
|
* passthroughClaimsWithNoMapping: false,
|
|
37
37
|
* },
|
|
38
38
|
* },
|
|
39
|
+
* allowedClients: ["https://allowed.example.com"],
|
|
39
40
|
* allowedLogoutUrls: ["https://example.com"],
|
|
40
41
|
* allowedOrigins: ["https://example.com"],
|
|
41
42
|
* appType: "non_interactive",
|
|
@@ -69,6 +70,8 @@ const utilities = require("./utilities");
|
|
|
69
70
|
* },
|
|
70
71
|
* },
|
|
71
72
|
* oidcConformant: false,
|
|
73
|
+
* organizationRequireBehavior: "no_prompt",
|
|
74
|
+
* organizationUsage: "deny",
|
|
72
75
|
* refreshToken: {
|
|
73
76
|
* expirationType: "expiring",
|
|
74
77
|
* idleTokenLifetime: 1296000,
|
|
@@ -91,6 +94,7 @@ class Client extends pulumi.CustomResource {
|
|
|
91
94
|
if (opts.id) {
|
|
92
95
|
const state = argsOrState;
|
|
93
96
|
inputs["addons"] = state ? state.addons : undefined;
|
|
97
|
+
inputs["allowedClients"] = state ? state.allowedClients : undefined;
|
|
94
98
|
inputs["allowedLogoutUrls"] = state ? state.allowedLogoutUrls : undefined;
|
|
95
99
|
inputs["allowedOrigins"] = state ? state.allowedOrigins : undefined;
|
|
96
100
|
inputs["appType"] = state ? state.appType : undefined;
|
|
@@ -115,6 +119,8 @@ class Client extends pulumi.CustomResource {
|
|
|
115
119
|
inputs["mobile"] = state ? state.mobile : undefined;
|
|
116
120
|
inputs["name"] = state ? state.name : undefined;
|
|
117
121
|
inputs["oidcConformant"] = state ? state.oidcConformant : undefined;
|
|
122
|
+
inputs["organizationRequireBehavior"] = state ? state.organizationRequireBehavior : undefined;
|
|
123
|
+
inputs["organizationUsage"] = state ? state.organizationUsage : undefined;
|
|
118
124
|
inputs["refreshToken"] = state ? state.refreshToken : undefined;
|
|
119
125
|
inputs["sso"] = state ? state.sso : undefined;
|
|
120
126
|
inputs["ssoDisabled"] = state ? state.ssoDisabled : undefined;
|
|
@@ -124,6 +130,7 @@ class Client extends pulumi.CustomResource {
|
|
|
124
130
|
else {
|
|
125
131
|
const args = argsOrState;
|
|
126
132
|
inputs["addons"] = args ? args.addons : undefined;
|
|
133
|
+
inputs["allowedClients"] = args ? args.allowedClients : undefined;
|
|
127
134
|
inputs["allowedLogoutUrls"] = args ? args.allowedLogoutUrls : undefined;
|
|
128
135
|
inputs["allowedOrigins"] = args ? args.allowedOrigins : undefined;
|
|
129
136
|
inputs["appType"] = args ? args.appType : undefined;
|
|
@@ -146,6 +153,8 @@ class Client extends pulumi.CustomResource {
|
|
|
146
153
|
inputs["mobile"] = args ? args.mobile : undefined;
|
|
147
154
|
inputs["name"] = args ? args.name : undefined;
|
|
148
155
|
inputs["oidcConformant"] = args ? args.oidcConformant : undefined;
|
|
156
|
+
inputs["organizationRequireBehavior"] = args ? args.organizationRequireBehavior : undefined;
|
|
157
|
+
inputs["organizationUsage"] = args ? args.organizationUsage : undefined;
|
|
149
158
|
inputs["refreshToken"] = args ? args.refreshToken : undefined;
|
|
150
159
|
inputs["sso"] = args ? args.sso : undefined;
|
|
151
160
|
inputs["ssoDisabled"] = args ? args.ssoDisabled : undefined;
|