@pulumi/auth0 2.6.0 → 2.7.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/action.d.ts +49 -21
- package/action.js +23 -4
- package/action.js.map +1 -1
- package/branding.d.ts +13 -4
- package/branding.js +4 -1
- package/branding.js.map +1 -1
- package/client.d.ts +30 -0
- package/client.js +11 -0
- package/client.js.map +1 -1
- package/clientGrant.d.ts +10 -8
- package/clientGrant.js +10 -8
- package/clientGrant.js.map +1 -1
- package/config/vars.d.ts +1 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/connection.d.ts +16 -5
- package/connection.js +13 -2
- package/connection.js.map +1 -1
- package/customDomain.d.ts +18 -7
- package/customDomain.js +10 -2
- package/customDomain.js.map +1 -1
- package/customDomainVerification.d.ts +13 -0
- package/customDomainVerification.js +13 -0
- package/customDomainVerification.js.map +1 -1
- package/email.d.ts +11 -1
- package/email.js +11 -1
- package/email.js.map +1 -1
- package/emailTemplate.d.ts +14 -4
- package/emailTemplate.js +11 -1
- package/emailTemplate.js.map +1 -1
- package/getClient.d.ts +95 -0
- package/getClient.js +41 -0
- package/getClient.js.map +1 -0
- package/getGlobalClient.d.ts +99 -0
- package/getGlobalClient.js +36 -0
- package/getGlobalClient.js.map +1 -0
- package/globalClient.d.ts +40 -0
- package/globalClient.js +33 -0
- package/globalClient.js.map +1 -1
- package/guardian.d.ts +23 -8
- package/guardian.js +13 -2
- package/guardian.js.map +1 -1
- package/hook.d.ts +31 -19
- package/hook.js +10 -1
- package/hook.js.map +1 -1
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/index.js.map +1 -1
- package/logStream.d.ts +1 -1
- package/logStream.js +1 -1
- package/organization.d.ts +8 -0
- package/organization.js +8 -0
- package/organization.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/prompt.d.ts +14 -3
- package/prompt.js +8 -0
- package/prompt.js.map +1 -1
- package/promptCustomText.d.ts +1 -1
- package/promptCustomText.js +1 -1
- package/provider.d.ts +6 -4
- package/provider.js +1 -6
- package/provider.js.map +1 -1
- package/resourceServer.d.ts +17 -9
- package/resourceServer.js +8 -0
- package/resourceServer.js.map +1 -1
- package/role.d.ts +29 -16
- package/role.js +23 -13
- package/role.js.map +1 -1
- package/rule.d.ts +11 -1
- package/rule.js +11 -1
- package/rule.js.map +1 -1
- package/ruleConfig.d.ts +11 -1
- package/ruleConfig.js +11 -1
- package/ruleConfig.js.map +1 -1
- package/tenant.d.ts +24 -13
- package/tenant.js +24 -13
- package/tenant.js.map +1 -1
- package/types/input.d.ts +12 -16
- package/types/output.d.ts +314 -16
- package/user.d.ts +22 -13
- package/user.js +10 -1
- package/user.js.map +1 -1
package/action.d.ts
CHANGED
|
@@ -22,7 +22,28 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
22
22
|
* console.log(event)
|
|
23
23
|
* };
|
|
24
24
|
* `,
|
|
25
|
+
* dependencies: [
|
|
26
|
+
* {
|
|
27
|
+
* name: "lodash",
|
|
28
|
+
* version: "latest",
|
|
29
|
+
* },
|
|
30
|
+
* {
|
|
31
|
+
* name: "request",
|
|
32
|
+
* version: "latest",
|
|
33
|
+
* },
|
|
34
|
+
* ],
|
|
25
35
|
* deploy: true,
|
|
36
|
+
* runtime: "node16",
|
|
37
|
+
* secrets: [
|
|
38
|
+
* {
|
|
39
|
+
* name: "FOO",
|
|
40
|
+
* value: "Foo",
|
|
41
|
+
* },
|
|
42
|
+
* {
|
|
43
|
+
* name: "BAR",
|
|
44
|
+
* value: "Bar",
|
|
45
|
+
* },
|
|
46
|
+
* ],
|
|
26
47
|
* supportedTriggers: {
|
|
27
48
|
* id: "post-login",
|
|
28
49
|
* version: "v2",
|
|
@@ -35,12 +56,10 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
35
56
|
* An action can be imported using the action's ID, e.g.
|
|
36
57
|
*
|
|
37
58
|
* ```sh
|
|
38
|
-
* $ pulumi import auth0:index/action:Action
|
|
59
|
+
* $ pulumi import auth0:index/action:Action my_action 12f4f21b-017a-319d-92e7-2291c1ca36c4
|
|
39
60
|
* ```
|
|
40
61
|
*
|
|
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.
|
|
62
|
+
* ~> For security reasons importing `secrets` is not allowed. Therefore, it is advised to import the action without secrets and adding them back after the action has been imported.
|
|
44
63
|
*/
|
|
45
64
|
export declare class Action extends pulumi.CustomResource {
|
|
46
65
|
/**
|
|
@@ -63,11 +82,13 @@ export declare class Action extends pulumi.CustomResource {
|
|
|
63
82
|
*/
|
|
64
83
|
readonly code: pulumi.Output<string>;
|
|
65
84
|
/**
|
|
66
|
-
* List of third party npm modules, and their versions, that this action depends on
|
|
85
|
+
* List of third party npm modules, and their versions, that this action depends on.
|
|
67
86
|
*/
|
|
68
87
|
readonly dependencies: pulumi.Output<outputs.ActionDependency[] | undefined>;
|
|
69
88
|
/**
|
|
70
|
-
* Deploying an action will create a new immutable version of the action.
|
|
89
|
+
* Deploying an action will create a new immutable version of the action.
|
|
90
|
+
* If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the
|
|
91
|
+
* action immediately. Default is `false`.
|
|
71
92
|
*/
|
|
72
93
|
readonly deploy: pulumi.Output<boolean | undefined>;
|
|
73
94
|
/**
|
|
@@ -75,19 +96,20 @@ export declare class Action extends pulumi.CustomResource {
|
|
|
75
96
|
*/
|
|
76
97
|
readonly name: pulumi.Output<string>;
|
|
77
98
|
/**
|
|
78
|
-
* The Node runtime. For example `node16`, defaults to `node12
|
|
99
|
+
* The Node runtime. For example `node16`, defaults to `node12`.
|
|
79
100
|
*/
|
|
80
101
|
readonly runtime: pulumi.Output<string>;
|
|
81
102
|
/**
|
|
82
|
-
* List of secrets that are included in an action or a version of an action
|
|
103
|
+
* List of secrets that are included in an action or a version of an action.
|
|
83
104
|
*/
|
|
84
105
|
readonly secrets: pulumi.Output<outputs.ActionSecret[] | undefined>;
|
|
85
106
|
/**
|
|
86
|
-
* List of triggers that this action supports. At this time, an action can only target
|
|
107
|
+
* List of triggers that this action supports. At this time, an action can only target
|
|
108
|
+
* a single trigger at a time.
|
|
87
109
|
*/
|
|
88
110
|
readonly supportedTriggers: pulumi.Output<outputs.ActionSupportedTriggers>;
|
|
89
111
|
/**
|
|
90
|
-
* Version ID of the action. This value is available if `deploy` is set to true
|
|
112
|
+
* Version ID of the action. This value is available if `deploy` is set to true.
|
|
91
113
|
*/
|
|
92
114
|
readonly versionId: pulumi.Output<string>;
|
|
93
115
|
/**
|
|
@@ -108,11 +130,13 @@ export interface ActionState {
|
|
|
108
130
|
*/
|
|
109
131
|
code?: pulumi.Input<string>;
|
|
110
132
|
/**
|
|
111
|
-
* List of third party npm modules, and their versions, that this action depends on
|
|
133
|
+
* List of third party npm modules, and their versions, that this action depends on.
|
|
112
134
|
*/
|
|
113
135
|
dependencies?: pulumi.Input<pulumi.Input<inputs.ActionDependency>[]>;
|
|
114
136
|
/**
|
|
115
|
-
* Deploying an action will create a new immutable version of the action.
|
|
137
|
+
* Deploying an action will create a new immutable version of the action.
|
|
138
|
+
* If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the
|
|
139
|
+
* action immediately. Default is `false`.
|
|
116
140
|
*/
|
|
117
141
|
deploy?: pulumi.Input<boolean>;
|
|
118
142
|
/**
|
|
@@ -120,19 +144,20 @@ export interface ActionState {
|
|
|
120
144
|
*/
|
|
121
145
|
name?: pulumi.Input<string>;
|
|
122
146
|
/**
|
|
123
|
-
* The Node runtime. For example `node16`, defaults to `node12
|
|
147
|
+
* The Node runtime. For example `node16`, defaults to `node12`.
|
|
124
148
|
*/
|
|
125
149
|
runtime?: pulumi.Input<string>;
|
|
126
150
|
/**
|
|
127
|
-
* List of secrets that are included in an action or a version of an action
|
|
151
|
+
* List of secrets that are included in an action or a version of an action.
|
|
128
152
|
*/
|
|
129
153
|
secrets?: pulumi.Input<pulumi.Input<inputs.ActionSecret>[]>;
|
|
130
154
|
/**
|
|
131
|
-
* List of triggers that this action supports. At this time, an action can only target
|
|
155
|
+
* List of triggers that this action supports. At this time, an action can only target
|
|
156
|
+
* a single trigger at a time.
|
|
132
157
|
*/
|
|
133
158
|
supportedTriggers?: pulumi.Input<inputs.ActionSupportedTriggers>;
|
|
134
159
|
/**
|
|
135
|
-
* Version ID of the action. This value is available if `deploy` is set to true
|
|
160
|
+
* Version ID of the action. This value is available if `deploy` is set to true.
|
|
136
161
|
*/
|
|
137
162
|
versionId?: pulumi.Input<string>;
|
|
138
163
|
}
|
|
@@ -145,11 +170,13 @@ export interface ActionArgs {
|
|
|
145
170
|
*/
|
|
146
171
|
code: pulumi.Input<string>;
|
|
147
172
|
/**
|
|
148
|
-
* List of third party npm modules, and their versions, that this action depends on
|
|
173
|
+
* List of third party npm modules, and their versions, that this action depends on.
|
|
149
174
|
*/
|
|
150
175
|
dependencies?: pulumi.Input<pulumi.Input<inputs.ActionDependency>[]>;
|
|
151
176
|
/**
|
|
152
|
-
* Deploying an action will create a new immutable version of the action.
|
|
177
|
+
* Deploying an action will create a new immutable version of the action.
|
|
178
|
+
* If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the
|
|
179
|
+
* action immediately. Default is `false`.
|
|
153
180
|
*/
|
|
154
181
|
deploy?: pulumi.Input<boolean>;
|
|
155
182
|
/**
|
|
@@ -157,15 +184,16 @@ export interface ActionArgs {
|
|
|
157
184
|
*/
|
|
158
185
|
name?: pulumi.Input<string>;
|
|
159
186
|
/**
|
|
160
|
-
* The Node runtime. For example `node16`, defaults to `node12
|
|
187
|
+
* The Node runtime. For example `node16`, defaults to `node12`.
|
|
161
188
|
*/
|
|
162
189
|
runtime?: pulumi.Input<string>;
|
|
163
190
|
/**
|
|
164
|
-
* List of secrets that are included in an action or a version of an action
|
|
191
|
+
* List of secrets that are included in an action or a version of an action.
|
|
165
192
|
*/
|
|
166
193
|
secrets?: pulumi.Input<pulumi.Input<inputs.ActionSecret>[]>;
|
|
167
194
|
/**
|
|
168
|
-
* List of triggers that this action supports. At this time, an action can only target
|
|
195
|
+
* List of triggers that this action supports. At this time, an action can only target
|
|
196
|
+
* a single trigger at a time.
|
|
169
197
|
*/
|
|
170
198
|
supportedTriggers: pulumi.Input<inputs.ActionSupportedTriggers>;
|
|
171
199
|
}
|
package/action.js
CHANGED
|
@@ -27,7 +27,28 @@ const utilities = require("./utilities");
|
|
|
27
27
|
* console.log(event)
|
|
28
28
|
* };
|
|
29
29
|
* `,
|
|
30
|
+
* dependencies: [
|
|
31
|
+
* {
|
|
32
|
+
* name: "lodash",
|
|
33
|
+
* version: "latest",
|
|
34
|
+
* },
|
|
35
|
+
* {
|
|
36
|
+
* name: "request",
|
|
37
|
+
* version: "latest",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
30
40
|
* deploy: true,
|
|
41
|
+
* runtime: "node16",
|
|
42
|
+
* secrets: [
|
|
43
|
+
* {
|
|
44
|
+
* name: "FOO",
|
|
45
|
+
* value: "Foo",
|
|
46
|
+
* },
|
|
47
|
+
* {
|
|
48
|
+
* name: "BAR",
|
|
49
|
+
* value: "Bar",
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
31
52
|
* supportedTriggers: {
|
|
32
53
|
* id: "post-login",
|
|
33
54
|
* version: "v2",
|
|
@@ -40,12 +61,10 @@ const utilities = require("./utilities");
|
|
|
40
61
|
* An action can be imported using the action's ID, e.g.
|
|
41
62
|
*
|
|
42
63
|
* ```sh
|
|
43
|
-
* $ pulumi import auth0:index/action:Action
|
|
64
|
+
* $ pulumi import auth0:index/action:Action my_action 12f4f21b-017a-319d-92e7-2291c1ca36c4
|
|
44
65
|
* ```
|
|
45
66
|
*
|
|
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.
|
|
67
|
+
* ~> For security reasons importing `secrets` is not allowed. Therefore, it is advised to import the action without secrets and adding them back after the action has been imported.
|
|
49
68
|
*/
|
|
50
69
|
class Action extends pulumi.CustomResource {
|
|
51
70
|
constructor(name, argsOrState, opts) {
|
package/action.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.js","sourceRoot":"","sources":["../action.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"action.js","sourceRoot":"","sources":["../action.ts"],"names":[],"mappings":"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"}
|
package/branding.d.ts
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* This resource allows you to manage branding within your Auth0 tenant.
|
|
5
|
+
*
|
|
6
|
+
* Auth0 can be customized with a look and feel that aligns with your organization's brand requirements and user
|
|
7
|
+
* expectations.
|
|
5
8
|
*
|
|
6
9
|
* ## Example Usage
|
|
7
10
|
*
|
|
@@ -54,7 +57,9 @@ export declare class Branding extends pulumi.CustomResource {
|
|
|
54
57
|
*/
|
|
55
58
|
readonly logoUrl: pulumi.Output<string>;
|
|
56
59
|
/**
|
|
57
|
-
* List(Resource). Configuration settings for Universal Login.
|
|
60
|
+
* List(Resource). Configuration settings for Universal Login.
|
|
61
|
+
* See Universal Login. This capability can only be used if the tenant has
|
|
62
|
+
* [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
58
63
|
*/
|
|
59
64
|
readonly universalLogin: pulumi.Output<outputs.BrandingUniversalLogin | undefined>;
|
|
60
65
|
/**
|
|
@@ -87,7 +92,9 @@ export interface BrandingState {
|
|
|
87
92
|
*/
|
|
88
93
|
logoUrl?: pulumi.Input<string>;
|
|
89
94
|
/**
|
|
90
|
-
* List(Resource). Configuration settings for Universal Login.
|
|
95
|
+
* List(Resource). Configuration settings for Universal Login.
|
|
96
|
+
* See Universal Login. This capability can only be used if the tenant has
|
|
97
|
+
* [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
91
98
|
*/
|
|
92
99
|
universalLogin?: pulumi.Input<inputs.BrandingUniversalLogin>;
|
|
93
100
|
}
|
|
@@ -112,7 +119,9 @@ export interface BrandingArgs {
|
|
|
112
119
|
*/
|
|
113
120
|
logoUrl?: pulumi.Input<string>;
|
|
114
121
|
/**
|
|
115
|
-
* List(Resource). Configuration settings for Universal Login.
|
|
122
|
+
* List(Resource). Configuration settings for Universal Login.
|
|
123
|
+
* See Universal Login. This capability can only be used if the tenant has
|
|
124
|
+
* [Custom Domains](https://auth0.com/docs/custom-domains) enabled.
|
|
116
125
|
*/
|
|
117
126
|
universalLogin?: pulumi.Input<inputs.BrandingUniversalLogin>;
|
|
118
127
|
}
|
package/branding.js
CHANGED
|
@@ -6,7 +6,10 @@ exports.Branding = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* This resource allows you to manage branding within your Auth0 tenant.
|
|
10
|
+
*
|
|
11
|
+
* Auth0 can be customized with a look and feel that aligns with your organization's brand requirements and user
|
|
12
|
+
* expectations.
|
|
10
13
|
*
|
|
11
14
|
* ## Example Usage
|
|
12
15
|
*
|
package/branding.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"branding.js","sourceRoot":"","sources":["../branding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"branding.js","sourceRoot":"","sources":["../branding.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IA2D/C,YAAY,IAAY,EAAE,WAA0C,EAAE,IAAmC;QACrG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwC,CAAC;YACvD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;aAAM;YACH,MAAM,IAAI,GAAG,WAAuC,CAAC;YACrD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,QAAQ,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7D,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
|
@@ -49,6 +49,7 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
49
49
|
* "password",
|
|
50
50
|
* "refresh_token",
|
|
51
51
|
* ],
|
|
52
|
+
* initiateLoginUri: "https://example.com/login",
|
|
52
53
|
* isFirstParty: true,
|
|
53
54
|
* isTokenEndpointIpHeaderTrusted: true,
|
|
54
55
|
* jwtConfiguration: {
|
|
@@ -81,6 +82,14 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
81
82
|
* webOrigins: ["https://example.com"],
|
|
82
83
|
* });
|
|
83
84
|
* ```
|
|
85
|
+
*
|
|
86
|
+
* ## Import
|
|
87
|
+
*
|
|
88
|
+
* A client can be imported using the client's ID, e.g.
|
|
89
|
+
*
|
|
90
|
+
* ```sh
|
|
91
|
+
* $ pulumi import auth0:index/client:Client my_client AaiyAPdpYdesoKnqjj8HJqRn4T5titww
|
|
92
|
+
* ```
|
|
84
93
|
*/
|
|
85
94
|
export declare class Client extends pulumi.CustomResource {
|
|
86
95
|
/**
|
|
@@ -174,6 +183,9 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
174
183
|
* List(String). Types of grants that this client is authorized to use.
|
|
175
184
|
*/
|
|
176
185
|
readonly grantTypes: pulumi.Output<string[]>;
|
|
186
|
+
/**
|
|
187
|
+
* String. Initiate login uri, must be https.
|
|
188
|
+
*/
|
|
177
189
|
readonly initiateLoginUri: pulumi.Output<string | undefined>;
|
|
178
190
|
/**
|
|
179
191
|
* Boolean. Indicates whether or not this client is a first-party client.
|
|
@@ -219,6 +231,12 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
219
231
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
220
232
|
*/
|
|
221
233
|
readonly refreshToken: pulumi.Output<outputs.ClientRefreshToken>;
|
|
234
|
+
/**
|
|
235
|
+
* List(Map). List containing a map of the public cert of the signing key and the public cert of the signing key in pkcs7.
|
|
236
|
+
*/
|
|
237
|
+
readonly signingKeys: pulumi.Output<{
|
|
238
|
+
[key: string]: any;
|
|
239
|
+
}[]>;
|
|
222
240
|
/**
|
|
223
241
|
* Boolean. Indicates whether or not the client should use Auth0 rather than the IdP to perform Single Sign-On (SSO). True = Use Auth0.
|
|
224
242
|
*/
|
|
@@ -324,6 +342,9 @@ export interface ClientState {
|
|
|
324
342
|
* List(String). Types of grants that this client is authorized to use.
|
|
325
343
|
*/
|
|
326
344
|
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
345
|
+
/**
|
|
346
|
+
* String. Initiate login uri, must be https.
|
|
347
|
+
*/
|
|
327
348
|
initiateLoginUri?: pulumi.Input<string>;
|
|
328
349
|
/**
|
|
329
350
|
* Boolean. Indicates whether or not this client is a first-party client.
|
|
@@ -369,6 +390,12 @@ export interface ClientState {
|
|
|
369
390
|
* List(Resource). Configuration settings for the refresh tokens issued for this client. For details, see Refresh Token Configuration.
|
|
370
391
|
*/
|
|
371
392
|
refreshToken?: pulumi.Input<inputs.ClientRefreshToken>;
|
|
393
|
+
/**
|
|
394
|
+
* List(Map). List containing a map of the public cert of the signing key and the public cert of the signing key in pkcs7.
|
|
395
|
+
*/
|
|
396
|
+
signingKeys?: pulumi.Input<pulumi.Input<{
|
|
397
|
+
[key: string]: any;
|
|
398
|
+
}>[]>;
|
|
372
399
|
/**
|
|
373
400
|
* Boolean. Indicates whether or not the client should use Auth0 rather than the IdP to perform Single Sign-On (SSO). True = Use Auth0.
|
|
374
401
|
*/
|
|
@@ -460,6 +487,9 @@ export interface ClientArgs {
|
|
|
460
487
|
* List(String). Types of grants that this client is authorized to use.
|
|
461
488
|
*/
|
|
462
489
|
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
490
|
+
/**
|
|
491
|
+
* String. Initiate login uri, must be https.
|
|
492
|
+
*/
|
|
463
493
|
initiateLoginUri?: pulumi.Input<string>;
|
|
464
494
|
/**
|
|
465
495
|
* Boolean. Indicates whether or not this client is a first-party client.
|
package/client.js
CHANGED
|
@@ -54,6 +54,7 @@ const utilities = require("./utilities");
|
|
|
54
54
|
* "password",
|
|
55
55
|
* "refresh_token",
|
|
56
56
|
* ],
|
|
57
|
+
* initiateLoginUri: "https://example.com/login",
|
|
57
58
|
* isFirstParty: true,
|
|
58
59
|
* isTokenEndpointIpHeaderTrusted: true,
|
|
59
60
|
* jwtConfiguration: {
|
|
@@ -86,6 +87,14 @@ const utilities = require("./utilities");
|
|
|
86
87
|
* webOrigins: ["https://example.com"],
|
|
87
88
|
* });
|
|
88
89
|
* ```
|
|
90
|
+
*
|
|
91
|
+
* ## Import
|
|
92
|
+
*
|
|
93
|
+
* A client can be imported using the client's ID, e.g.
|
|
94
|
+
*
|
|
95
|
+
* ```sh
|
|
96
|
+
* $ pulumi import auth0:index/client:Client my_client AaiyAPdpYdesoKnqjj8HJqRn4T5titww
|
|
97
|
+
* ```
|
|
89
98
|
*/
|
|
90
99
|
class Client extends pulumi.CustomResource {
|
|
91
100
|
constructor(name, argsOrState, opts) {
|
|
@@ -124,6 +133,7 @@ class Client extends pulumi.CustomResource {
|
|
|
124
133
|
resourceInputs["organizationRequireBehavior"] = state ? state.organizationRequireBehavior : undefined;
|
|
125
134
|
resourceInputs["organizationUsage"] = state ? state.organizationUsage : undefined;
|
|
126
135
|
resourceInputs["refreshToken"] = state ? state.refreshToken : undefined;
|
|
136
|
+
resourceInputs["signingKeys"] = state ? state.signingKeys : undefined;
|
|
127
137
|
resourceInputs["sso"] = state ? state.sso : undefined;
|
|
128
138
|
resourceInputs["ssoDisabled"] = state ? state.ssoDisabled : undefined;
|
|
129
139
|
resourceInputs["tokenEndpointAuthMethod"] = state ? state.tokenEndpointAuthMethod : undefined;
|
|
@@ -165,6 +175,7 @@ class Client extends pulumi.CustomResource {
|
|
|
165
175
|
resourceInputs["webOrigins"] = args ? args.webOrigins : undefined;
|
|
166
176
|
resourceInputs["clientId"] = undefined /*out*/;
|
|
167
177
|
resourceInputs["clientSecret"] = undefined /*out*/;
|
|
178
|
+
resourceInputs["signingKeys"] = undefined /*out*/;
|
|
168
179
|
}
|
|
169
180
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
170
181
|
super(Client.__pulumiType, name, resourceInputs, opts);
|
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/clientGrant.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Auth0 uses various grant types, or methods by which you grant limited access to your resources to another entity without
|
|
3
|
+
* Auth0 uses various grant types, or methods by which you grant limited access to your resources to another entity without
|
|
4
|
+
* exposing credentials. The OAuth 2.0 protocol supports several types of grants, which allow different types of access.
|
|
5
|
+
* This resource allows you to create and manage client grants used with configured Auth0 clients.
|
|
4
6
|
*
|
|
5
7
|
* ## Example Usage
|
|
6
8
|
*
|
|
@@ -8,23 +10,23 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
10
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
11
|
* import * as auth0 from "@pulumi/auth0";
|
|
10
12
|
*
|
|
11
|
-
* const myClient = new auth0.Client("
|
|
12
|
-
* const myResourceServer = new auth0.ResourceServer("
|
|
13
|
+
* const myClient = new auth0.Client("myClient", {});
|
|
14
|
+
* const myResourceServer = new auth0.ResourceServer("myResourceServer", {
|
|
13
15
|
* identifier: "https://api.example.com/client-grant",
|
|
14
16
|
* scopes: [
|
|
15
17
|
* {
|
|
16
|
-
* description: "Create foos",
|
|
17
18
|
* value: "create:foo",
|
|
19
|
+
* description: "Create foos",
|
|
18
20
|
* },
|
|
19
21
|
* {
|
|
20
|
-
* description: "Create bars",
|
|
21
22
|
* value: "create:bar",
|
|
23
|
+
* description: "Create bars",
|
|
22
24
|
* },
|
|
23
25
|
* ],
|
|
24
26
|
* });
|
|
25
|
-
* const myClientGrant = new auth0.ClientGrant("
|
|
26
|
-
* audience: myResourceServer.identifier,
|
|
27
|
+
* const myClientGrant = new auth0.ClientGrant("myClientGrant", {
|
|
27
28
|
* clientId: myClient.id,
|
|
29
|
+
* audience: myResourceServer.identifier,
|
|
28
30
|
* scopes: ["create:foo"],
|
|
29
31
|
* });
|
|
30
32
|
* ```
|
|
@@ -34,7 +36,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
34
36
|
* Client grants can be imported using the grant ID (Application -> APIs -> Expand the required API)
|
|
35
37
|
*
|
|
36
38
|
* ```sh
|
|
37
|
-
* $ pulumi import auth0:index/clientGrant:ClientGrant
|
|
39
|
+
* $ pulumi import auth0:index/clientGrant:ClientGrant my_client_grant cgr_XXXXXXXXXXXXXXXX
|
|
38
40
|
* ```
|
|
39
41
|
*/
|
|
40
42
|
export declare class ClientGrant extends pulumi.CustomResource {
|
package/clientGrant.js
CHANGED
|
@@ -6,7 +6,9 @@ exports.ClientGrant = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Auth0 uses various grant types, or methods by which you grant limited access to your resources to another entity without
|
|
9
|
+
* Auth0 uses various grant types, or methods by which you grant limited access to your resources to another entity without
|
|
10
|
+
* exposing credentials. The OAuth 2.0 protocol supports several types of grants, which allow different types of access.
|
|
11
|
+
* This resource allows you to create and manage client grants used with configured Auth0 clients.
|
|
10
12
|
*
|
|
11
13
|
* ## Example Usage
|
|
12
14
|
*
|
|
@@ -14,23 +16,23 @@ const utilities = require("./utilities");
|
|
|
14
16
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
17
|
* import * as auth0 from "@pulumi/auth0";
|
|
16
18
|
*
|
|
17
|
-
* const myClient = new auth0.Client("
|
|
18
|
-
* const myResourceServer = new auth0.ResourceServer("
|
|
19
|
+
* const myClient = new auth0.Client("myClient", {});
|
|
20
|
+
* const myResourceServer = new auth0.ResourceServer("myResourceServer", {
|
|
19
21
|
* identifier: "https://api.example.com/client-grant",
|
|
20
22
|
* scopes: [
|
|
21
23
|
* {
|
|
22
|
-
* description: "Create foos",
|
|
23
24
|
* value: "create:foo",
|
|
25
|
+
* description: "Create foos",
|
|
24
26
|
* },
|
|
25
27
|
* {
|
|
26
|
-
* description: "Create bars",
|
|
27
28
|
* value: "create:bar",
|
|
29
|
+
* description: "Create bars",
|
|
28
30
|
* },
|
|
29
31
|
* ],
|
|
30
32
|
* });
|
|
31
|
-
* const myClientGrant = new auth0.ClientGrant("
|
|
32
|
-
* audience: myResourceServer.identifier,
|
|
33
|
+
* const myClientGrant = new auth0.ClientGrant("myClientGrant", {
|
|
33
34
|
* clientId: myClient.id,
|
|
35
|
+
* audience: myResourceServer.identifier,
|
|
34
36
|
* scopes: ["create:foo"],
|
|
35
37
|
* });
|
|
36
38
|
* ```
|
|
@@ -40,7 +42,7 @@ const utilities = require("./utilities");
|
|
|
40
42
|
* Client grants can be imported using the grant ID (Application -> APIs -> Expand the required API)
|
|
41
43
|
*
|
|
42
44
|
* ```sh
|
|
43
|
-
* $ pulumi import auth0:index/clientGrant:ClientGrant
|
|
45
|
+
* $ pulumi import auth0:index/clientGrant:ClientGrant my_client_grant cgr_XXXXXXXXXXXXXXXX
|
|
44
46
|
* ```
|
|
45
47
|
*/
|
|
46
48
|
class ClientGrant extends pulumi.CustomResource {
|
package/clientGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAiDlD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,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,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,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,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;IAzED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCA2EC;AA7DG,gBAAgB;AACO,wBAAY,GAAG,qCAAqC,CAAC"}
|
package/config/vars.d.ts
CHANGED
package/config/vars.js
CHANGED
|
@@ -5,6 +5,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
const pulumi = require("@pulumi/pulumi");
|
|
6
6
|
const utilities = require("../utilities");
|
|
7
7
|
const __config = new pulumi.Config("auth0");
|
|
8
|
+
Object.defineProperty(exports, "apiToken", {
|
|
9
|
+
get() {
|
|
10
|
+
return __config.get("apiToken");
|
|
11
|
+
},
|
|
12
|
+
enumerable: true,
|
|
13
|
+
});
|
|
8
14
|
Object.defineProperty(exports, "clientId", {
|
|
9
15
|
get() {
|
|
10
16
|
return __config.get("clientId");
|
package/config/vars.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AACzC,0CAA0C;AAG1C,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;AAG5C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;;QACC,OAAO,MAAA,QAAQ,CAAC,SAAS,CAAU,OAAO,CAAC,mCAAI,SAAS,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;IAC1F,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"vars.js","sourceRoot":"","sources":["../../config/vars.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;AAEjF,yCAAyC;AACzC,0CAA0C;AAG1C,MAAM,QAAQ,GAAG,IAAI,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;AAG5C,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,UAAU,EAAE;IACvC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IACpC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,cAAc,EAAE;IAC3C,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACxC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,OAAO,EAAE;IACpC,GAAG;;QACC,OAAO,MAAA,QAAQ,CAAC,SAAS,CAAU,OAAO,CAAC,mCAAI,SAAS,CAAC,aAAa,CAAC,aAAa,CAAC,CAAC;IAC1F,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC;AAGH,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,QAAQ,EAAE;IACrC,GAAG;QACC,OAAO,QAAQ,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IAClC,CAAC;IACD,UAAU,EAAE,IAAI;CACnB,CAAC,CAAC"}
|
package/connection.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
* With Auth0, you can define sources of users, otherwise known as connections, which may include identity providers
|
|
4
|
+
* With Auth0, you can define sources of users, otherwise known as connections, which may include identity providers
|
|
5
|
+
* (such as Google or LinkedIn), databases, or passwordless authentication methods. This resource allows you to configure
|
|
6
|
+
* and manage connections to be used with your clients and users.
|
|
5
7
|
*
|
|
6
8
|
* ## Example Usage
|
|
7
9
|
*
|
|
@@ -33,7 +35,16 @@ import { input as inputs, output as outputs } from "./types";
|
|
|
33
35
|
* });
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
|
-
* > The Auth0 dashboard displays only one connection per social provider. Although the Auth0 Management API
|
|
38
|
+
* > The Auth0 dashboard displays only one connection per social provider. Although the Auth0 Management API allows the
|
|
39
|
+
* creation of multiple connections per strategy, the additional connections may not be visible in the Auth0 dashboard.
|
|
40
|
+
*
|
|
41
|
+
* ## Import
|
|
42
|
+
*
|
|
43
|
+
* Connections can be imported using their id, e.g.
|
|
44
|
+
*
|
|
45
|
+
* ```sh
|
|
46
|
+
* $ pulumi import auth0:index/connection:Connection google con_a17f21fdb24d48a0
|
|
47
|
+
* ```
|
|
37
48
|
*/
|
|
38
49
|
export declare class Connection extends pulumi.CustomResource {
|
|
39
50
|
/**
|
|
@@ -60,7 +71,7 @@ export declare class Connection extends pulumi.CustomResource {
|
|
|
60
71
|
*/
|
|
61
72
|
readonly enabledClients: pulumi.Output<string[]>;
|
|
62
73
|
/**
|
|
63
|
-
* Indicates whether
|
|
74
|
+
* Indicates whether the connection is domain level.
|
|
64
75
|
*/
|
|
65
76
|
readonly isDomainConnection: pulumi.Output<boolean>;
|
|
66
77
|
/**
|
|
@@ -111,7 +122,7 @@ export interface ConnectionState {
|
|
|
111
122
|
*/
|
|
112
123
|
enabledClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
113
124
|
/**
|
|
114
|
-
* Indicates whether
|
|
125
|
+
* Indicates whether the connection is domain level.
|
|
115
126
|
*/
|
|
116
127
|
isDomainConnection?: pulumi.Input<boolean>;
|
|
117
128
|
/**
|
|
@@ -154,7 +165,7 @@ export interface ConnectionArgs {
|
|
|
154
165
|
*/
|
|
155
166
|
enabledClients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
156
167
|
/**
|
|
157
|
-
* Indicates whether
|
|
168
|
+
* Indicates whether the connection is domain level.
|
|
158
169
|
*/
|
|
159
170
|
isDomainConnection?: pulumi.Input<boolean>;
|
|
160
171
|
/**
|