@pulumi/auth0 2.8.0-alpha.1648762250 → 2.8.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/attackProtection.d.ts +129 -0
- package/attackProtection.js +109 -0
- package/attackProtection.js.map +1 -0
- package/client.d.ts +8 -4
- package/client.js +4 -0
- package/client.js.map +1 -1
- package/connection.d.ts +12 -0
- package/connection.js +2 -0
- package/connection.js.map +1 -1
- package/getClient.d.ts +1 -0
- package/getClient.js.map +1 -1
- package/getGlobalClient.d.ts +1 -0
- package/getGlobalClient.js.map +1 -1
- package/getTenant.d.ts +31 -0
- package/getTenant.js +28 -0
- package/getTenant.js.map +1 -0
- package/index.d.ts +2 -0
- package/index.js +6 -0
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +82 -16
- package/types/output.d.ts +95 -33
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* Auth0 can detect attacks and stop malicious attempts to access your application such as blocking traffic from certain IPs and displaying CAPTCHA
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
11
|
+
*
|
|
12
|
+
* const attackProtection = new auth0.AttackProtection("attack_protection", {
|
|
13
|
+
* breachedPasswordDetection: {
|
|
14
|
+
* adminNotificationFrequencies: ["daily"],
|
|
15
|
+
* enabled: true,
|
|
16
|
+
* method: "standard",
|
|
17
|
+
* shields: [
|
|
18
|
+
* "admin_notification",
|
|
19
|
+
* "block",
|
|
20
|
+
* ],
|
|
21
|
+
* },
|
|
22
|
+
* bruteForceProtection: {
|
|
23
|
+
* allowlists: ["127.0.0.1"],
|
|
24
|
+
* enabled: true,
|
|
25
|
+
* maxAttempts: 5,
|
|
26
|
+
* mode: "count_per_identifier_and_ip",
|
|
27
|
+
* shields: [
|
|
28
|
+
* "block",
|
|
29
|
+
* "user_notification",
|
|
30
|
+
* ],
|
|
31
|
+
* },
|
|
32
|
+
* suspiciousIpThrottling: {
|
|
33
|
+
* allowlists: ["192.168.1.1"],
|
|
34
|
+
* enabled: true,
|
|
35
|
+
* preLogin: {
|
|
36
|
+
* maxAttempts: 100,
|
|
37
|
+
* rate: 864000,
|
|
38
|
+
* },
|
|
39
|
+
* preUserRegistration: {
|
|
40
|
+
* maxAttempts: 50,
|
|
41
|
+
* rate: 1200,
|
|
42
|
+
* },
|
|
43
|
+
* shields: [
|
|
44
|
+
* "admin_notification",
|
|
45
|
+
* "block",
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* });
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* ## Import
|
|
52
|
+
*
|
|
53
|
+
* As this is not a resource identifiable by an ID within the Auth0 Management API, guardian can be imported using a random string. We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4) e.g.
|
|
54
|
+
*
|
|
55
|
+
* ```sh
|
|
56
|
+
* $ pulumi import auth0:index/attackProtection:AttackProtection default 24940d4b-4bd4-44e7-894e-f92e4de36a40
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
export declare class AttackProtection extends pulumi.CustomResource {
|
|
60
|
+
/**
|
|
61
|
+
* Get an existing AttackProtection resource's state with the given name, ID, and optional extra
|
|
62
|
+
* properties used to qualify the lookup.
|
|
63
|
+
*
|
|
64
|
+
* @param name The _unique_ name of the resulting resource.
|
|
65
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
66
|
+
* @param state Any extra arguments used during the lookup.
|
|
67
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
68
|
+
*/
|
|
69
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AttackProtectionState, opts?: pulumi.CustomResourceOptions): AttackProtection;
|
|
70
|
+
/**
|
|
71
|
+
* Returns true if the given object is an instance of AttackProtection. This is designed to work even
|
|
72
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
73
|
+
*/
|
|
74
|
+
static isInstance(obj: any): obj is AttackProtection;
|
|
75
|
+
/**
|
|
76
|
+
* Breached password detection protects your applications from bad actors logging in with stolen credentials.
|
|
77
|
+
*/
|
|
78
|
+
readonly breachedPasswordDetection: pulumi.Output<outputs.AttackProtectionBreachedPasswordDetection>;
|
|
79
|
+
/**
|
|
80
|
+
* Safeguards against a single IP address attacking a single user account.
|
|
81
|
+
*/
|
|
82
|
+
readonly bruteForceProtection: pulumi.Output<outputs.AttackProtectionBruteForceProtection>;
|
|
83
|
+
/**
|
|
84
|
+
* Suspicious IP throttling blocks traffic from any IP address that rapidly attempts too many logins or signups.
|
|
85
|
+
*/
|
|
86
|
+
readonly suspiciousIpThrottling: pulumi.Output<outputs.AttackProtectionSuspiciousIpThrottling>;
|
|
87
|
+
/**
|
|
88
|
+
* Create a AttackProtection resource with the given unique name, arguments, and options.
|
|
89
|
+
*
|
|
90
|
+
* @param name The _unique_ name of the resource.
|
|
91
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
92
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
93
|
+
*/
|
|
94
|
+
constructor(name: string, args?: AttackProtectionArgs, opts?: pulumi.CustomResourceOptions);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* Input properties used for looking up and filtering AttackProtection resources.
|
|
98
|
+
*/
|
|
99
|
+
export interface AttackProtectionState {
|
|
100
|
+
/**
|
|
101
|
+
* Breached password detection protects your applications from bad actors logging in with stolen credentials.
|
|
102
|
+
*/
|
|
103
|
+
breachedPasswordDetection?: pulumi.Input<inputs.AttackProtectionBreachedPasswordDetection>;
|
|
104
|
+
/**
|
|
105
|
+
* Safeguards against a single IP address attacking a single user account.
|
|
106
|
+
*/
|
|
107
|
+
bruteForceProtection?: pulumi.Input<inputs.AttackProtectionBruteForceProtection>;
|
|
108
|
+
/**
|
|
109
|
+
* Suspicious IP throttling blocks traffic from any IP address that rapidly attempts too many logins or signups.
|
|
110
|
+
*/
|
|
111
|
+
suspiciousIpThrottling?: pulumi.Input<inputs.AttackProtectionSuspiciousIpThrottling>;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* The set of arguments for constructing a AttackProtection resource.
|
|
115
|
+
*/
|
|
116
|
+
export interface AttackProtectionArgs {
|
|
117
|
+
/**
|
|
118
|
+
* Breached password detection protects your applications from bad actors logging in with stolen credentials.
|
|
119
|
+
*/
|
|
120
|
+
breachedPasswordDetection?: pulumi.Input<inputs.AttackProtectionBreachedPasswordDetection>;
|
|
121
|
+
/**
|
|
122
|
+
* Safeguards against a single IP address attacking a single user account.
|
|
123
|
+
*/
|
|
124
|
+
bruteForceProtection?: pulumi.Input<inputs.AttackProtectionBruteForceProtection>;
|
|
125
|
+
/**
|
|
126
|
+
* Suspicious IP throttling blocks traffic from any IP address that rapidly attempts too many logins or signups.
|
|
127
|
+
*/
|
|
128
|
+
suspiciousIpThrottling?: pulumi.Input<inputs.AttackProtectionSuspiciousIpThrottling>;
|
|
129
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
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.AttackProtection = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Auth0 can detect attacks and stop malicious attempts to access your application such as blocking traffic from certain IPs and displaying CAPTCHA
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const attackProtection = new auth0.AttackProtection("attack_protection", {
|
|
18
|
+
* breachedPasswordDetection: {
|
|
19
|
+
* adminNotificationFrequencies: ["daily"],
|
|
20
|
+
* enabled: true,
|
|
21
|
+
* method: "standard",
|
|
22
|
+
* shields: [
|
|
23
|
+
* "admin_notification",
|
|
24
|
+
* "block",
|
|
25
|
+
* ],
|
|
26
|
+
* },
|
|
27
|
+
* bruteForceProtection: {
|
|
28
|
+
* allowlists: ["127.0.0.1"],
|
|
29
|
+
* enabled: true,
|
|
30
|
+
* maxAttempts: 5,
|
|
31
|
+
* mode: "count_per_identifier_and_ip",
|
|
32
|
+
* shields: [
|
|
33
|
+
* "block",
|
|
34
|
+
* "user_notification",
|
|
35
|
+
* ],
|
|
36
|
+
* },
|
|
37
|
+
* suspiciousIpThrottling: {
|
|
38
|
+
* allowlists: ["192.168.1.1"],
|
|
39
|
+
* enabled: true,
|
|
40
|
+
* preLogin: {
|
|
41
|
+
* maxAttempts: 100,
|
|
42
|
+
* rate: 864000,
|
|
43
|
+
* },
|
|
44
|
+
* preUserRegistration: {
|
|
45
|
+
* maxAttempts: 50,
|
|
46
|
+
* rate: 1200,
|
|
47
|
+
* },
|
|
48
|
+
* shields: [
|
|
49
|
+
* "admin_notification",
|
|
50
|
+
* "block",
|
|
51
|
+
* ],
|
|
52
|
+
* },
|
|
53
|
+
* });
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* ## Import
|
|
57
|
+
*
|
|
58
|
+
* As this is not a resource identifiable by an ID within the Auth0 Management API, guardian can be imported using a random string. We recommend [Version 4 UUID](https://www.uuidgenerator.net/version4) e.g.
|
|
59
|
+
*
|
|
60
|
+
* ```sh
|
|
61
|
+
* $ pulumi import auth0:index/attackProtection:AttackProtection default 24940d4b-4bd4-44e7-894e-f92e4de36a40
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
class AttackProtection extends pulumi.CustomResource {
|
|
65
|
+
constructor(name, argsOrState, opts) {
|
|
66
|
+
let resourceInputs = {};
|
|
67
|
+
opts = opts || {};
|
|
68
|
+
if (opts.id) {
|
|
69
|
+
const state = argsOrState;
|
|
70
|
+
resourceInputs["breachedPasswordDetection"] = state ? state.breachedPasswordDetection : undefined;
|
|
71
|
+
resourceInputs["bruteForceProtection"] = state ? state.bruteForceProtection : undefined;
|
|
72
|
+
resourceInputs["suspiciousIpThrottling"] = state ? state.suspiciousIpThrottling : undefined;
|
|
73
|
+
}
|
|
74
|
+
else {
|
|
75
|
+
const args = argsOrState;
|
|
76
|
+
resourceInputs["breachedPasswordDetection"] = args ? args.breachedPasswordDetection : undefined;
|
|
77
|
+
resourceInputs["bruteForceProtection"] = args ? args.bruteForceProtection : undefined;
|
|
78
|
+
resourceInputs["suspiciousIpThrottling"] = args ? args.suspiciousIpThrottling : undefined;
|
|
79
|
+
}
|
|
80
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
81
|
+
super(AttackProtection.__pulumiType, name, resourceInputs, opts);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Get an existing AttackProtection resource's state with the given name, ID, and optional extra
|
|
85
|
+
* properties used to qualify the lookup.
|
|
86
|
+
*
|
|
87
|
+
* @param name The _unique_ name of the resulting resource.
|
|
88
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
89
|
+
* @param state Any extra arguments used during the lookup.
|
|
90
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
91
|
+
*/
|
|
92
|
+
static get(name, id, state, opts) {
|
|
93
|
+
return new AttackProtection(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Returns true if the given object is an instance of AttackProtection. This is designed to work even
|
|
97
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
98
|
+
*/
|
|
99
|
+
static isInstance(obj) {
|
|
100
|
+
if (obj === undefined || obj === null) {
|
|
101
|
+
return false;
|
|
102
|
+
}
|
|
103
|
+
return obj['__pulumiType'] === AttackProtection.__pulumiType;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.AttackProtection = AttackProtection;
|
|
107
|
+
/** @internal */
|
|
108
|
+
AttackProtection.__pulumiType = 'auth0:index/attackProtection:AttackProtection';
|
|
109
|
+
//# sourceMappingURL=attackProtection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attackProtection.js","sourceRoot":"","sources":["../attackProtection.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IAiDvD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/F;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7F;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;;AA1BL,4CAkEC;AApDG,gBAAgB;AACO,6BAAY,GAAG,+CAA+C,CAAC"}
|
package/client.d.ts
CHANGED
|
@@ -40,6 +40,10 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
40
40
|
* clientMetadata: {
|
|
41
41
|
* foo: "zoo",
|
|
42
42
|
* },
|
|
43
|
+
* clientSecretRotationTrigger: {
|
|
44
|
+
* triggered_at: "2018-01-02T23:12:01Z",
|
|
45
|
+
* triggered_by: "auth0",
|
|
46
|
+
* },
|
|
43
47
|
* customLoginPageOn: true,
|
|
44
48
|
* description: "Test Applications Long Description",
|
|
45
49
|
* grantTypes: [
|
|
@@ -144,7 +148,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
144
148
|
} | undefined>;
|
|
145
149
|
readonly clientSecret: pulumi.Output<string>;
|
|
146
150
|
/**
|
|
147
|
-
* Map.
|
|
151
|
+
* Map. Custom metadata for the rotation. For more info: [rotate-client-secret](https://auth0.com/docs/get-started/applications/rotate-client-secret).
|
|
148
152
|
*/
|
|
149
153
|
readonly clientSecretRotationTrigger: pulumi.Output<{
|
|
150
154
|
[key: string]: any;
|
|
@@ -206,7 +210,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
206
210
|
/**
|
|
207
211
|
* List(Resource). Configuration settings for mobile native applications. For details, see Mobile.
|
|
208
212
|
*/
|
|
209
|
-
readonly mobile: pulumi.Output<outputs.ClientMobile
|
|
213
|
+
readonly mobile: pulumi.Output<outputs.ClientMobile>;
|
|
210
214
|
/**
|
|
211
215
|
* String. Name of the client.
|
|
212
216
|
*/
|
|
@@ -303,7 +307,7 @@ export interface ClientState {
|
|
|
303
307
|
}>;
|
|
304
308
|
clientSecret?: pulumi.Input<string>;
|
|
305
309
|
/**
|
|
306
|
-
* Map.
|
|
310
|
+
* Map. Custom metadata for the rotation. For more info: [rotate-client-secret](https://auth0.com/docs/get-started/applications/rotate-client-secret).
|
|
307
311
|
*/
|
|
308
312
|
clientSecretRotationTrigger?: pulumi.Input<{
|
|
309
313
|
[key: string]: any;
|
|
@@ -448,7 +452,7 @@ export interface ClientArgs {
|
|
|
448
452
|
[key: string]: any;
|
|
449
453
|
}>;
|
|
450
454
|
/**
|
|
451
|
-
* Map.
|
|
455
|
+
* Map. Custom metadata for the rotation. For more info: [rotate-client-secret](https://auth0.com/docs/get-started/applications/rotate-client-secret).
|
|
452
456
|
*/
|
|
453
457
|
clientSecretRotationTrigger?: pulumi.Input<{
|
|
454
458
|
[key: string]: any;
|
package/client.js
CHANGED
|
@@ -45,6 +45,10 @@ const utilities = require("./utilities");
|
|
|
45
45
|
* clientMetadata: {
|
|
46
46
|
* foo: "zoo",
|
|
47
47
|
* },
|
|
48
|
+
* clientSecretRotationTrigger: {
|
|
49
|
+
* triggered_at: "2018-01-02T23:12:01Z",
|
|
50
|
+
* triggered_by: "auth0",
|
|
51
|
+
* },
|
|
48
52
|
* customLoginPageOn: true,
|
|
49
53
|
* description: "Test Applications Long Description",
|
|
50
54
|
* grantTypes: [
|
package/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":"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"}
|
package/connection.d.ts
CHANGED
|
@@ -86,6 +86,10 @@ export declare class Connection extends pulumi.CustomResource {
|
|
|
86
86
|
* Defines the realms for which the connection will be used (i.e., email domains). If not specified, the connection name is added as the realm.
|
|
87
87
|
*/
|
|
88
88
|
readonly realms: pulumi.Output<string[]>;
|
|
89
|
+
/**
|
|
90
|
+
* Display connection as a button. Only available for enterprise connections.
|
|
91
|
+
*/
|
|
92
|
+
readonly showAsButton: pulumi.Output<boolean | undefined>;
|
|
89
93
|
/**
|
|
90
94
|
* Type of the connection, which indicates the identity provider. Options include `ad`, `adfs`, `amazon`, `aol`, `apple`, `auth0`, `auth0-adldap`, `auth0-oidc`, `baidu`, `bitbucket`, `bitly`, `box`, `custom`, `daccount`, `dropbox`, `dwolla`, `email`, `evernote`, `evernote-sandbox`, `exact`, `facebook`, `fitbit`, `flickr`, `github`, `google-apps`, `google-oauth2`, `guardian`, `instagram`, `ip`, `line`, `linkedin`, `miicard`, `oauth1`, `oauth2`, `office365`, `oidc`, `paypal`, `paypal-sandbox`, `pingfederate`, `planningcenter`, `renren`, `salesforce`, `salesforce-community`, `salesforce-sandbox` `samlp`, `sharepoint`, `shopify`, `sms`, `soundcloud`, `thecity`, `thecity-sandbox`, `thirtysevensignals`, `twitter`, `untappd`, `vkontakte`, `waad`, `weibo`, `windowslive`, `wordpress`, `yahoo`, `yammer`, `yandex`.
|
|
91
95
|
*/
|
|
@@ -137,6 +141,10 @@ export interface ConnectionState {
|
|
|
137
141
|
* Defines the realms for which the connection will be used (i.e., email domains). If not specified, the connection name is added as the realm.
|
|
138
142
|
*/
|
|
139
143
|
realms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
|
+
/**
|
|
145
|
+
* Display connection as a button. Only available for enterprise connections.
|
|
146
|
+
*/
|
|
147
|
+
showAsButton?: pulumi.Input<boolean>;
|
|
140
148
|
/**
|
|
141
149
|
* Type of the connection, which indicates the identity provider. Options include `ad`, `adfs`, `amazon`, `aol`, `apple`, `auth0`, `auth0-adldap`, `auth0-oidc`, `baidu`, `bitbucket`, `bitly`, `box`, `custom`, `daccount`, `dropbox`, `dwolla`, `email`, `evernote`, `evernote-sandbox`, `exact`, `facebook`, `fitbit`, `flickr`, `github`, `google-apps`, `google-oauth2`, `guardian`, `instagram`, `ip`, `line`, `linkedin`, `miicard`, `oauth1`, `oauth2`, `office365`, `oidc`, `paypal`, `paypal-sandbox`, `pingfederate`, `planningcenter`, `renren`, `salesforce`, `salesforce-community`, `salesforce-sandbox` `samlp`, `sharepoint`, `shopify`, `sms`, `soundcloud`, `thecity`, `thecity-sandbox`, `thirtysevensignals`, `twitter`, `untappd`, `vkontakte`, `waad`, `weibo`, `windowslive`, `wordpress`, `yahoo`, `yammer`, `yandex`.
|
|
142
150
|
*/
|
|
@@ -180,6 +188,10 @@ export interface ConnectionArgs {
|
|
|
180
188
|
* Defines the realms for which the connection will be used (i.e., email domains). If not specified, the connection name is added as the realm.
|
|
181
189
|
*/
|
|
182
190
|
realms?: pulumi.Input<pulumi.Input<string>[]>;
|
|
191
|
+
/**
|
|
192
|
+
* Display connection as a button. Only available for enterprise connections.
|
|
193
|
+
*/
|
|
194
|
+
showAsButton?: pulumi.Input<boolean>;
|
|
183
195
|
/**
|
|
184
196
|
* Type of the connection, which indicates the identity provider. Options include `ad`, `adfs`, `amazon`, `aol`, `apple`, `auth0`, `auth0-adldap`, `auth0-oidc`, `baidu`, `bitbucket`, `bitly`, `box`, `custom`, `daccount`, `dropbox`, `dwolla`, `email`, `evernote`, `evernote-sandbox`, `exact`, `facebook`, `fitbit`, `flickr`, `github`, `google-apps`, `google-oauth2`, `guardian`, `instagram`, `ip`, `line`, `linkedin`, `miicard`, `oauth1`, `oauth2`, `office365`, `oidc`, `paypal`, `paypal-sandbox`, `pingfederate`, `planningcenter`, `renren`, `salesforce`, `salesforce-community`, `salesforce-sandbox` `samlp`, `sharepoint`, `shopify`, `sms`, `soundcloud`, `thecity`, `thecity-sandbox`, `thirtysevensignals`, `twitter`, `untappd`, `vkontakte`, `waad`, `weibo`, `windowslive`, `wordpress`, `yahoo`, `yammer`, `yandex`.
|
|
185
197
|
*/
|
package/connection.js
CHANGED
|
@@ -63,6 +63,7 @@ class Connection extends pulumi.CustomResource {
|
|
|
63
63
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
64
64
|
resourceInputs["options"] = state ? state.options : undefined;
|
|
65
65
|
resourceInputs["realms"] = state ? state.realms : undefined;
|
|
66
|
+
resourceInputs["showAsButton"] = state ? state.showAsButton : undefined;
|
|
66
67
|
resourceInputs["strategy"] = state ? state.strategy : undefined;
|
|
67
68
|
resourceInputs["strategyVersion"] = state ? state.strategyVersion : undefined;
|
|
68
69
|
resourceInputs["validation"] = state ? state.validation : undefined;
|
|
@@ -78,6 +79,7 @@ class Connection extends pulumi.CustomResource {
|
|
|
78
79
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
79
80
|
resourceInputs["options"] = args ? args.options : undefined;
|
|
80
81
|
resourceInputs["realms"] = args ? args.realms : undefined;
|
|
82
|
+
resourceInputs["showAsButton"] = args ? args.showAsButton : undefined;
|
|
81
83
|
resourceInputs["strategy"] = args ? args.strategy : undefined;
|
|
82
84
|
resourceInputs["strategyVersion"] = args ? args.strategyVersion : undefined;
|
|
83
85
|
resourceInputs["validation"] = args ? args.validation : undefined;
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"connection.js","sourceRoot":"","sources":["../connection.ts"],"names":[],"mappings":"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"}
|
package/getClient.d.ts
CHANGED
package/getClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;
|
|
1
|
+
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AA4DD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getGlobalClient.d.ts
CHANGED
package/getGlobalClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGlobalClient.js","sourceRoot":"","sources":["../getGlobalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC;
|
|
1
|
+
{"version":3,"file":"getGlobalClient.js","sourceRoot":"","sources":["../getGlobalClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC;AAuED,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getTenant.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to access information about the tenant this provider is configured to access.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
10
|
+
*
|
|
11
|
+
* const current = pulumi.output(auth0.getTenant());
|
|
12
|
+
* ```
|
|
13
|
+
*/
|
|
14
|
+
export declare function getTenant(opts?: pulumi.InvokeOptions): Promise<GetTenantResult>;
|
|
15
|
+
/**
|
|
16
|
+
* A collection of values returned by getTenant.
|
|
17
|
+
*/
|
|
18
|
+
export interface GetTenantResult {
|
|
19
|
+
/**
|
|
20
|
+
* String. Your Auth0 domain name.
|
|
21
|
+
*/
|
|
22
|
+
readonly domain: string;
|
|
23
|
+
/**
|
|
24
|
+
* The provider-assigned unique ID for this managed resource.
|
|
25
|
+
*/
|
|
26
|
+
readonly id: string;
|
|
27
|
+
/**
|
|
28
|
+
* String. The identifier value of the built-in Management API resource server, which can be used as an audience when configuring client grants.
|
|
29
|
+
*/
|
|
30
|
+
readonly managementApiIdentifier: string;
|
|
31
|
+
}
|
package/getTenant.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
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.getTenant = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about the tenant this provider is configured to access.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const current = pulumi.output(auth0.getTenant());
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getTenant(opts) {
|
|
21
|
+
if (!opts) {
|
|
22
|
+
opts = {};
|
|
23
|
+
}
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
25
|
+
return pulumi.runtime.invoke("auth0:index/getTenant:getTenant", {}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getTenant = getTenant;
|
|
28
|
+
//# sourceMappingURL=getTenant.js.map
|
package/getTenant.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTenant.js","sourceRoot":"","sources":["../getTenant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,SAAS,CAAC,IAA2B;IACjD,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE,EAC/D,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8BAQC"}
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from "./action";
|
|
2
|
+
export * from "./attackProtection";
|
|
2
3
|
export * from "./branding";
|
|
3
4
|
export * from "./client";
|
|
4
5
|
export * from "./clientGrant";
|
|
@@ -9,6 +10,7 @@ export * from "./email";
|
|
|
9
10
|
export * from "./emailTemplate";
|
|
10
11
|
export * from "./getClient";
|
|
11
12
|
export * from "./getGlobalClient";
|
|
13
|
+
export * from "./getTenant";
|
|
12
14
|
export * from "./globalClient";
|
|
13
15
|
export * from "./guardian";
|
|
14
16
|
export * from "./hook";
|
package/index.js
CHANGED
|
@@ -21,6 +21,7 @@ const pulumi = require("@pulumi/pulumi");
|
|
|
21
21
|
const utilities = require("./utilities");
|
|
22
22
|
// Export members:
|
|
23
23
|
__exportStar(require("./action"), exports);
|
|
24
|
+
__exportStar(require("./attackProtection"), exports);
|
|
24
25
|
__exportStar(require("./branding"), exports);
|
|
25
26
|
__exportStar(require("./client"), exports);
|
|
26
27
|
__exportStar(require("./clientGrant"), exports);
|
|
@@ -31,6 +32,7 @@ __exportStar(require("./email"), exports);
|
|
|
31
32
|
__exportStar(require("./emailTemplate"), exports);
|
|
32
33
|
__exportStar(require("./getClient"), exports);
|
|
33
34
|
__exportStar(require("./getGlobalClient"), exports);
|
|
35
|
+
__exportStar(require("./getTenant"), exports);
|
|
34
36
|
__exportStar(require("./globalClient"), exports);
|
|
35
37
|
__exportStar(require("./guardian"), exports);
|
|
36
38
|
__exportStar(require("./hook"), exports);
|
|
@@ -53,6 +55,7 @@ const types = require("./types");
|
|
|
53
55
|
exports.types = types;
|
|
54
56
|
// Import resources to register:
|
|
55
57
|
const action_1 = require("./action");
|
|
58
|
+
const attackProtection_1 = require("./attackProtection");
|
|
56
59
|
const branding_1 = require("./branding");
|
|
57
60
|
const client_1 = require("./client");
|
|
58
61
|
const clientGrant_1 = require("./clientGrant");
|
|
@@ -81,6 +84,8 @@ const _module = {
|
|
|
81
84
|
switch (type) {
|
|
82
85
|
case "auth0:index/action:Action":
|
|
83
86
|
return new action_1.Action(name, undefined, { urn });
|
|
87
|
+
case "auth0:index/attackProtection:AttackProtection":
|
|
88
|
+
return new attackProtection_1.AttackProtection(name, undefined, { urn });
|
|
84
89
|
case "auth0:index/branding:Branding":
|
|
85
90
|
return new branding_1.Branding(name, undefined, { urn });
|
|
86
91
|
case "auth0:index/client:Client":
|
|
@@ -131,6 +136,7 @@ const _module = {
|
|
|
131
136
|
},
|
|
132
137
|
};
|
|
133
138
|
pulumi.runtime.registerResourceModule("auth0", "index/action", _module);
|
|
139
|
+
pulumi.runtime.registerResourceModule("auth0", "index/attackProtection", _module);
|
|
134
140
|
pulumi.runtime.registerResourceModule("auth0", "index/branding", _module);
|
|
135
141
|
pulumi.runtime.registerResourceModule("auth0", "index/client", _module);
|
|
136
142
|
pulumi.runtime.registerResourceModule("auth0", "index/clientGrant", _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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/auth0",
|
|
3
|
-
"version": "v2.8.0
|
|
3
|
+
"version": "v2.8.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing auth0 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource auth0 v2.8.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource auth0 v2.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/auth0",
|
|
3
|
-
"version": "v2.8.0
|
|
3
|
+
"version": "v2.8.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing auth0 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource auth0 v2.8.0
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource auth0 v2.8.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/types/input.d.ts
CHANGED
|
@@ -30,6 +30,82 @@ export interface ActionSupportedTriggers {
|
|
|
30
30
|
*/
|
|
31
31
|
version: pulumi.Input<string>;
|
|
32
32
|
}
|
|
33
|
+
export interface AttackProtectionBreachedPasswordDetection {
|
|
34
|
+
/**
|
|
35
|
+
* When "adminNotification" is enabled, determines how often email notifications are sent. Possible values: `immediately`, `daily`, `weekly`, `monthly`.
|
|
36
|
+
*/
|
|
37
|
+
adminNotificationFrequencies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
38
|
+
/**
|
|
39
|
+
* Whether or not breached password detection is active.
|
|
40
|
+
*/
|
|
41
|
+
enabled?: pulumi.Input<boolean>;
|
|
42
|
+
/**
|
|
43
|
+
* The subscription level for breached password detection methods. Use "enhanced" to enable Credential Guard. Possible values: `standard`, `enhanced`.
|
|
44
|
+
*/
|
|
45
|
+
method?: pulumi.Input<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
48
|
+
*/
|
|
49
|
+
shields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
50
|
+
}
|
|
51
|
+
export interface AttackProtectionBruteForceProtection {
|
|
52
|
+
/**
|
|
53
|
+
* List of trusted IP addresses that will not have attack protection enforced against them.
|
|
54
|
+
*/
|
|
55
|
+
allowlists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
56
|
+
/**
|
|
57
|
+
* Whether or not breached password detection is active.
|
|
58
|
+
*/
|
|
59
|
+
enabled?: pulumi.Input<boolean>;
|
|
60
|
+
/**
|
|
61
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
62
|
+
*/
|
|
63
|
+
maxAttempts?: pulumi.Input<number>;
|
|
64
|
+
/**
|
|
65
|
+
* Determines whether or not IP address is used when counting failed attempts. Possible values: `countPerIdentifierAndIp` or `countPerIdentifier`.
|
|
66
|
+
*/
|
|
67
|
+
mode?: pulumi.Input<string>;
|
|
68
|
+
/**
|
|
69
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
70
|
+
*/
|
|
71
|
+
shields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
72
|
+
}
|
|
73
|
+
export interface AttackProtectionSuspiciousIpThrottling {
|
|
74
|
+
/**
|
|
75
|
+
* List of trusted IP addresses that will not have attack protection enforced against them.
|
|
76
|
+
*/
|
|
77
|
+
allowlists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
78
|
+
/**
|
|
79
|
+
* Whether or not breached password detection is active.
|
|
80
|
+
*/
|
|
81
|
+
enabled?: pulumi.Input<boolean>;
|
|
82
|
+
/**
|
|
83
|
+
* Configuration options that apply before every login attempt. Only available on public tenants.
|
|
84
|
+
*/
|
|
85
|
+
preLogin?: pulumi.Input<inputs.AttackProtectionSuspiciousIpThrottlingPreLogin>;
|
|
86
|
+
/**
|
|
87
|
+
* Configuration options that apply before every user registration attempt. Only available on public tenants.
|
|
88
|
+
*/
|
|
89
|
+
preUserRegistration?: pulumi.Input<inputs.AttackProtectionSuspiciousIpThrottlingPreUserRegistration>;
|
|
90
|
+
/**
|
|
91
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
92
|
+
*/
|
|
93
|
+
shields?: pulumi.Input<pulumi.Input<string>[]>;
|
|
94
|
+
}
|
|
95
|
+
export interface AttackProtectionSuspiciousIpThrottlingPreLogin {
|
|
96
|
+
/**
|
|
97
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
98
|
+
*/
|
|
99
|
+
maxAttempts?: pulumi.Input<number>;
|
|
100
|
+
rate?: pulumi.Input<number>;
|
|
101
|
+
}
|
|
102
|
+
export interface AttackProtectionSuspiciousIpThrottlingPreUserRegistration {
|
|
103
|
+
/**
|
|
104
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
105
|
+
*/
|
|
106
|
+
maxAttempts?: pulumi.Input<number>;
|
|
107
|
+
rate?: pulumi.Input<number>;
|
|
108
|
+
}
|
|
33
109
|
export interface BrandingColors {
|
|
34
110
|
/**
|
|
35
111
|
* String, Hexadecimal. Background color of login pages.
|
|
@@ -256,7 +332,9 @@ export interface ClientAddonsSamlp {
|
|
|
256
332
|
/**
|
|
257
333
|
* Map(Resource). Configuration settings for logout. For details, see Logout.
|
|
258
334
|
*/
|
|
259
|
-
logout?: pulumi.Input<
|
|
335
|
+
logout?: pulumi.Input<{
|
|
336
|
+
[key: string]: any;
|
|
337
|
+
}>;
|
|
260
338
|
/**
|
|
261
339
|
* Boolean, (Default=true). Indicates whether or not to add additional identity information in the token, such as the provider used and the access_token, if available.
|
|
262
340
|
*/
|
|
@@ -304,16 +382,6 @@ export interface ClientAddonsSamlp {
|
|
|
304
382
|
*/
|
|
305
383
|
typedAttributes?: pulumi.Input<boolean>;
|
|
306
384
|
}
|
|
307
|
-
export interface ClientAddonsSamlpLogout {
|
|
308
|
-
/**
|
|
309
|
-
* String. Service provider's Single Logout Service URL, to which Auth0 will send logout requests and responses.
|
|
310
|
-
*/
|
|
311
|
-
callback?: pulumi.Input<string>;
|
|
312
|
-
/**
|
|
313
|
-
* Boolean. Indicates whether or not Auth0 should notify service providers of session termination.
|
|
314
|
-
*/
|
|
315
|
-
sloEnabled?: pulumi.Input<boolean>;
|
|
316
|
-
}
|
|
317
385
|
export interface ClientJwtConfiguration {
|
|
318
386
|
/**
|
|
319
387
|
* String. Algorithm used to sign JWTs.
|
|
@@ -881,7 +949,9 @@ export interface GlobalClientAddonsSamlp {
|
|
|
881
949
|
digestAlgorithm?: pulumi.Input<string>;
|
|
882
950
|
includeAttributeNameFormat?: pulumi.Input<boolean>;
|
|
883
951
|
lifetimeInSeconds?: pulumi.Input<number>;
|
|
884
|
-
logout?: pulumi.Input<
|
|
952
|
+
logout?: pulumi.Input<{
|
|
953
|
+
[key: string]: any;
|
|
954
|
+
}>;
|
|
885
955
|
mapIdentities?: pulumi.Input<boolean>;
|
|
886
956
|
mapUnknownClaimsAsIs?: pulumi.Input<boolean>;
|
|
887
957
|
mappings?: pulumi.Input<{
|
|
@@ -896,10 +966,6 @@ export interface GlobalClientAddonsSamlp {
|
|
|
896
966
|
signingCert?: pulumi.Input<string>;
|
|
897
967
|
typedAttributes?: pulumi.Input<boolean>;
|
|
898
968
|
}
|
|
899
|
-
export interface GlobalClientAddonsSamlpLogout {
|
|
900
|
-
callback?: pulumi.Input<string>;
|
|
901
|
-
sloEnabled?: pulumi.Input<boolean>;
|
|
902
|
-
}
|
|
903
969
|
export interface GlobalClientJwtConfiguration {
|
|
904
970
|
alg?: pulumi.Input<string>;
|
|
905
971
|
lifetimeInSeconds?: pulumi.Input<number>;
|
package/types/output.d.ts
CHANGED
|
@@ -29,6 +29,82 @@ export interface ActionSupportedTriggers {
|
|
|
29
29
|
*/
|
|
30
30
|
version: string;
|
|
31
31
|
}
|
|
32
|
+
export interface AttackProtectionBreachedPasswordDetection {
|
|
33
|
+
/**
|
|
34
|
+
* When "adminNotification" is enabled, determines how often email notifications are sent. Possible values: `immediately`, `daily`, `weekly`, `monthly`.
|
|
35
|
+
*/
|
|
36
|
+
adminNotificationFrequencies?: string[];
|
|
37
|
+
/**
|
|
38
|
+
* Whether or not breached password detection is active.
|
|
39
|
+
*/
|
|
40
|
+
enabled?: boolean;
|
|
41
|
+
/**
|
|
42
|
+
* The subscription level for breached password detection methods. Use "enhanced" to enable Credential Guard. Possible values: `standard`, `enhanced`.
|
|
43
|
+
*/
|
|
44
|
+
method?: string;
|
|
45
|
+
/**
|
|
46
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
47
|
+
*/
|
|
48
|
+
shields?: string[];
|
|
49
|
+
}
|
|
50
|
+
export interface AttackProtectionBruteForceProtection {
|
|
51
|
+
/**
|
|
52
|
+
* List of trusted IP addresses that will not have attack protection enforced against them.
|
|
53
|
+
*/
|
|
54
|
+
allowlists?: string[];
|
|
55
|
+
/**
|
|
56
|
+
* Whether or not breached password detection is active.
|
|
57
|
+
*/
|
|
58
|
+
enabled?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
61
|
+
*/
|
|
62
|
+
maxAttempts?: number;
|
|
63
|
+
/**
|
|
64
|
+
* Determines whether or not IP address is used when counting failed attempts. Possible values: `countPerIdentifierAndIp` or `countPerIdentifier`.
|
|
65
|
+
*/
|
|
66
|
+
mode?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
69
|
+
*/
|
|
70
|
+
shields?: string[];
|
|
71
|
+
}
|
|
72
|
+
export interface AttackProtectionSuspiciousIpThrottling {
|
|
73
|
+
/**
|
|
74
|
+
* List of trusted IP addresses that will not have attack protection enforced against them.
|
|
75
|
+
*/
|
|
76
|
+
allowlists?: string[];
|
|
77
|
+
/**
|
|
78
|
+
* Whether or not breached password detection is active.
|
|
79
|
+
*/
|
|
80
|
+
enabled?: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* Configuration options that apply before every login attempt. Only available on public tenants.
|
|
83
|
+
*/
|
|
84
|
+
preLogin?: outputs.AttackProtectionSuspiciousIpThrottlingPreLogin;
|
|
85
|
+
/**
|
|
86
|
+
* Configuration options that apply before every user registration attempt. Only available on public tenants.
|
|
87
|
+
*/
|
|
88
|
+
preUserRegistration?: outputs.AttackProtectionSuspiciousIpThrottlingPreUserRegistration;
|
|
89
|
+
/**
|
|
90
|
+
* Action to take when a breached password is detected. Possible values: `block`, `userNotification`, `adminNotification`.
|
|
91
|
+
*/
|
|
92
|
+
shields?: string[];
|
|
93
|
+
}
|
|
94
|
+
export interface AttackProtectionSuspiciousIpThrottlingPreLogin {
|
|
95
|
+
/**
|
|
96
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
97
|
+
*/
|
|
98
|
+
maxAttempts?: number;
|
|
99
|
+
rate?: number;
|
|
100
|
+
}
|
|
101
|
+
export interface AttackProtectionSuspiciousIpThrottlingPreUserRegistration {
|
|
102
|
+
/**
|
|
103
|
+
* Maximum number of unsuccessful attempts. Only available on public tenants.
|
|
104
|
+
*/
|
|
105
|
+
maxAttempts?: number;
|
|
106
|
+
rate?: number;
|
|
107
|
+
}
|
|
32
108
|
export interface BrandingColors {
|
|
33
109
|
/**
|
|
34
110
|
* String, Hexadecimal. Background color of login pages.
|
|
@@ -163,7 +239,7 @@ export interface ClientAddons {
|
|
|
163
239
|
/**
|
|
164
240
|
* List(Resource). Configuration settings for a SAML add-on. For details, see SAML.
|
|
165
241
|
*/
|
|
166
|
-
samlp
|
|
242
|
+
samlp: outputs.ClientAddonsSamlp;
|
|
167
243
|
/**
|
|
168
244
|
* String
|
|
169
245
|
*/
|
|
@@ -255,7 +331,9 @@ export interface ClientAddonsSamlp {
|
|
|
255
331
|
/**
|
|
256
332
|
* Map(Resource). Configuration settings for logout. For details, see Logout.
|
|
257
333
|
*/
|
|
258
|
-
logout?:
|
|
334
|
+
logout?: {
|
|
335
|
+
[key: string]: any;
|
|
336
|
+
};
|
|
259
337
|
/**
|
|
260
338
|
* Boolean, (Default=true). Indicates whether or not to add additional identity information in the token, such as the provider used and the access_token, if available.
|
|
261
339
|
*/
|
|
@@ -303,16 +381,6 @@ export interface ClientAddonsSamlp {
|
|
|
303
381
|
*/
|
|
304
382
|
typedAttributes?: boolean;
|
|
305
383
|
}
|
|
306
|
-
export interface ClientAddonsSamlpLogout {
|
|
307
|
-
/**
|
|
308
|
-
* String. Service provider's Single Logout Service URL, to which Auth0 will send logout requests and responses.
|
|
309
|
-
*/
|
|
310
|
-
callback?: string;
|
|
311
|
-
/**
|
|
312
|
-
* Boolean. Indicates whether or not Auth0 should notify service providers of session termination.
|
|
313
|
-
*/
|
|
314
|
-
sloEnabled?: boolean;
|
|
315
|
-
}
|
|
316
384
|
export interface ClientJwtConfiguration {
|
|
317
385
|
/**
|
|
318
386
|
* String. Algorithm used to sign JWTs.
|
|
@@ -423,7 +491,7 @@ export interface ConnectionOptions {
|
|
|
423
491
|
/**
|
|
424
492
|
* List of allowed audiences.
|
|
425
493
|
*/
|
|
426
|
-
allowedAudiences
|
|
494
|
+
allowedAudiences: string[];
|
|
427
495
|
apiEnableUsers?: boolean;
|
|
428
496
|
/**
|
|
429
497
|
* Azure AD domain name.
|
|
@@ -485,7 +553,7 @@ export interface ConnectionOptions {
|
|
|
485
553
|
/**
|
|
486
554
|
* List of the domains that can be authenticated using the Identity Provider. Only needed for Identifier First authentication flows.
|
|
487
555
|
*/
|
|
488
|
-
domainAliases
|
|
556
|
+
domainAliases: string[];
|
|
489
557
|
enabledDatabaseCustomization?: boolean;
|
|
490
558
|
/**
|
|
491
559
|
* Custom Entity ID for the connection.
|
|
@@ -514,7 +582,7 @@ export interface ConnectionOptions {
|
|
|
514
582
|
* Indicates whether or not you have a legacy user store and want to gradually migrate those users to the Auth0 user store. [Learn more](https://auth0.com/docs/users/guides/configure-automatic-migration).
|
|
515
583
|
*/
|
|
516
584
|
importMode?: boolean;
|
|
517
|
-
ips
|
|
585
|
+
ips: string[];
|
|
518
586
|
/**
|
|
519
587
|
* Issuer URL. E.g. `https://auth.example.com`
|
|
520
588
|
*/
|
|
@@ -535,7 +603,7 @@ export interface ConnectionOptions {
|
|
|
535
603
|
/**
|
|
536
604
|
* Configuration settings Options for multifactor authentication. For details, see MFA Options.
|
|
537
605
|
*/
|
|
538
|
-
mfa
|
|
606
|
+
mfa: outputs.ConnectionOptionsMfa;
|
|
539
607
|
/**
|
|
540
608
|
* Name of the connection.
|
|
541
609
|
*/
|
|
@@ -580,7 +648,7 @@ export interface ConnectionOptions {
|
|
|
580
648
|
/**
|
|
581
649
|
* Scopes required by the connection. The value must be a list, for example `["openid", "profile", "email"]`.
|
|
582
650
|
*/
|
|
583
|
-
scopes
|
|
651
|
+
scopes: string[];
|
|
584
652
|
scripts?: {
|
|
585
653
|
[key: string]: string;
|
|
586
654
|
};
|
|
@@ -880,7 +948,9 @@ export interface GetClientAddonSamlp {
|
|
|
880
948
|
digestAlgorithm: string;
|
|
881
949
|
includeAttributeNameFormat: boolean;
|
|
882
950
|
lifetimeInSeconds: number;
|
|
883
|
-
logout:
|
|
951
|
+
logout: {
|
|
952
|
+
[key: string]: any;
|
|
953
|
+
};
|
|
884
954
|
mapIdentities: boolean;
|
|
885
955
|
mapUnknownClaimsAsIs: boolean;
|
|
886
956
|
mappings: {
|
|
@@ -895,10 +965,6 @@ export interface GetClientAddonSamlp {
|
|
|
895
965
|
signingCert: string;
|
|
896
966
|
typedAttributes: boolean;
|
|
897
967
|
}
|
|
898
|
-
export interface GetClientAddonSamlpLogout {
|
|
899
|
-
callback?: string;
|
|
900
|
-
sloEnabled?: boolean;
|
|
901
|
-
}
|
|
902
968
|
export interface GetClientJwtConfiguration {
|
|
903
969
|
alg: string;
|
|
904
970
|
lifetimeInSeconds: number;
|
|
@@ -1031,7 +1097,9 @@ export interface GetGlobalClientAddonSamlp {
|
|
|
1031
1097
|
digestAlgorithm: string;
|
|
1032
1098
|
includeAttributeNameFormat: boolean;
|
|
1033
1099
|
lifetimeInSeconds: number;
|
|
1034
|
-
logout:
|
|
1100
|
+
logout: {
|
|
1101
|
+
[key: string]: any;
|
|
1102
|
+
};
|
|
1035
1103
|
mapIdentities: boolean;
|
|
1036
1104
|
mapUnknownClaimsAsIs: boolean;
|
|
1037
1105
|
mappings: {
|
|
@@ -1046,10 +1114,6 @@ export interface GetGlobalClientAddonSamlp {
|
|
|
1046
1114
|
signingCert: string;
|
|
1047
1115
|
typedAttributes: boolean;
|
|
1048
1116
|
}
|
|
1049
|
-
export interface GetGlobalClientAddonSamlpLogout {
|
|
1050
|
-
callback?: string;
|
|
1051
|
-
sloEnabled?: boolean;
|
|
1052
|
-
}
|
|
1053
1117
|
export interface GetGlobalClientJwtConfiguration {
|
|
1054
1118
|
alg: string;
|
|
1055
1119
|
lifetimeInSeconds: number;
|
|
@@ -1144,7 +1208,7 @@ export interface GlobalClientAddons {
|
|
|
1144
1208
|
salesforceSandboxApi?: {
|
|
1145
1209
|
[key: string]: any;
|
|
1146
1210
|
};
|
|
1147
|
-
samlp
|
|
1211
|
+
samlp: outputs.GlobalClientAddonsSamlp;
|
|
1148
1212
|
sapApi?: {
|
|
1149
1213
|
[key: string]: any;
|
|
1150
1214
|
};
|
|
@@ -1182,7 +1246,9 @@ export interface GlobalClientAddonsSamlp {
|
|
|
1182
1246
|
digestAlgorithm?: string;
|
|
1183
1247
|
includeAttributeNameFormat?: boolean;
|
|
1184
1248
|
lifetimeInSeconds?: number;
|
|
1185
|
-
logout?:
|
|
1249
|
+
logout?: {
|
|
1250
|
+
[key: string]: any;
|
|
1251
|
+
};
|
|
1186
1252
|
mapIdentities?: boolean;
|
|
1187
1253
|
mapUnknownClaimsAsIs?: boolean;
|
|
1188
1254
|
mappings?: {
|
|
@@ -1197,10 +1263,6 @@ export interface GlobalClientAddonsSamlp {
|
|
|
1197
1263
|
signingCert?: string;
|
|
1198
1264
|
typedAttributes?: boolean;
|
|
1199
1265
|
}
|
|
1200
|
-
export interface GlobalClientAddonsSamlpLogout {
|
|
1201
|
-
callback?: string;
|
|
1202
|
-
sloEnabled?: boolean;
|
|
1203
|
-
}
|
|
1204
1266
|
export interface GlobalClientJwtConfiguration {
|
|
1205
1267
|
alg?: string;
|
|
1206
1268
|
lifetimeInSeconds: number;
|