@pulumi/keycloak 6.9.0-alpha.1766555854 → 6.9.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/authentication/getSubflow.d.ts +179 -0
- package/authentication/getSubflow.js +126 -0
- package/authentication/getSubflow.js.map +1 -0
- package/authentication/index.d.ts +3 -0
- package/authentication/index.js +4 -1
- package/authentication/index.js.map +1 -1
- package/getGroup.d.ts +3 -0
- package/getGroup.js +2 -0
- package/getGroup.js.map +1 -1
- package/getRealm.d.ts +1 -0
- package/getRealm.js.map +1 -1
- package/group.d.ts +3 -0
- package/group.js +2 -0
- package/group.js.map +1 -1
- package/ldap/userFederation.d.ts +36 -0
- package/ldap/userFederation.js +6 -0
- package/ldap/userFederation.js.map +1 -1
- package/oidc/facebookIdentityProvider.d.ts +363 -0
- package/oidc/facebookIdentityProvider.js +150 -0
- package/oidc/facebookIdentityProvider.js.map +1 -0
- package/oidc/index.d.ts +3 -0
- package/oidc/index.js +6 -1
- package/oidc/index.js.map +1 -1
- package/openid/client.d.ts +13 -1
- package/openid/client.js +2 -0
- package/openid/client.js.map +1 -1
- package/openid/clientAuthorizationResource.d.ts +88 -0
- package/openid/clientAuthorizationResource.js +88 -0
- package/openid/clientAuthorizationResource.js.map +1 -1
- package/openid/clientAuthorizationScope.d.ts +73 -0
- package/openid/clientAuthorizationScope.js +73 -0
- package/openid/clientAuthorizationScope.js.map +1 -1
- package/openid/clientScope.d.ts +3 -3
- package/openid/getClient.d.ts +1 -0
- package/openid/getClient.js.map +1 -1
- package/organization.d.ts +5 -5
- package/organization.js +0 -3
- package/organization.js.map +1 -1
- package/package.json +2 -2
- package/realm.d.ts +15 -0
- package/realm.js +4 -0
- package/realm.js.map +1 -1
- package/realmKeystoreRsa.d.ts +21 -0
- package/realmKeystoreRsa.js +5 -0
- package/realmKeystoreRsa.js.map +1 -1
- package/saml/client.d.ts +12 -0
- package/saml/client.js +2 -0
- package/saml/client.js.map +1 -1
- package/saml/getClient.d.ts +1 -0
- package/saml/getClient.js.map +1 -1
- package/saml/getClientInstallationProvider.d.ts +4 -4
- package/saml/getClientInstallationProvider.js +4 -4
- package/types/input.d.ts +7 -0
- package/types/output.d.ts +6 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This data source can be used to fetch the details of an authentication subflow within Keycloak.
|
|
4
|
+
*
|
|
5
|
+
* An authentication subflow is a nested flow within a parent authentication flow that groups related authentication steps together.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ### Lookup by Alias (Human-readable)
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
14
|
+
*
|
|
15
|
+
* const realm = new keycloak.Realm("realm", {
|
|
16
|
+
* realm: "my-realm",
|
|
17
|
+
* enabled: true,
|
|
18
|
+
* });
|
|
19
|
+
* const myFlow = new keycloak.authentication.Flow("my_flow", {
|
|
20
|
+
* realmId: realm.id,
|
|
21
|
+
* alias: "my-custom-flow",
|
|
22
|
+
* });
|
|
23
|
+
* const mySubflow = new keycloak.authentication.Subflow("my_subflow", {
|
|
24
|
+
* realmId: realm.id,
|
|
25
|
+
* parentFlowAlias: myFlow.alias,
|
|
26
|
+
* alias: "my-subflow",
|
|
27
|
+
* providerId: "basic-flow",
|
|
28
|
+
* });
|
|
29
|
+
* const subflow = keycloak.authentication.getSubflowOutput({
|
|
30
|
+
* realmId: realm.id,
|
|
31
|
+
* parentFlowAlias: myFlow.alias,
|
|
32
|
+
* alias: "my-subflow",
|
|
33
|
+
* });
|
|
34
|
+
* export const subflowId = subflow.apply(subflow => subflow.id);
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* ### Lookup by ID (Direct)
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
42
|
+
*
|
|
43
|
+
* const subflow = keycloak.authentication.getSubflow({
|
|
44
|
+
* realmId: "my-realm-id",
|
|
45
|
+
* parentFlowAlias: "browser",
|
|
46
|
+
* id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
47
|
+
* });
|
|
48
|
+
* export const subflowAlias = subflow.then(subflow => subflow.alias);
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
export declare function getSubflow(args: GetSubflowArgs, opts?: pulumi.InvokeOptions): Promise<GetSubflowResult>;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of arguments for invoking getSubflow.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetSubflowArgs {
|
|
56
|
+
/**
|
|
57
|
+
* The alias of the authentication subflow. Either `id` or `alias` must be specified.
|
|
58
|
+
*
|
|
59
|
+
* > **Note:** You must specify either `id` or `alias`, but not both. Use `id` for direct lookup by GUID, or `alias` for human-readable lookup by name.
|
|
60
|
+
*/
|
|
61
|
+
alias?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The unique ID of the authentication subflow. Either `id` or `alias` must be specified.
|
|
64
|
+
*/
|
|
65
|
+
id?: string;
|
|
66
|
+
/**
|
|
67
|
+
* The alias of the parent authentication flow.
|
|
68
|
+
*/
|
|
69
|
+
parentFlowAlias: string;
|
|
70
|
+
/**
|
|
71
|
+
* The realm the authentication subflow exists in.
|
|
72
|
+
*/
|
|
73
|
+
realmId: string;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* A collection of values returned by getSubflow.
|
|
77
|
+
*/
|
|
78
|
+
export interface GetSubflowResult {
|
|
79
|
+
/**
|
|
80
|
+
* The alias of the subflow.
|
|
81
|
+
*/
|
|
82
|
+
readonly alias?: string;
|
|
83
|
+
readonly authenticator: string;
|
|
84
|
+
/**
|
|
85
|
+
* The description of the subflow.
|
|
86
|
+
*/
|
|
87
|
+
readonly description: string;
|
|
88
|
+
/**
|
|
89
|
+
* The unique ID of the authentication subflow.
|
|
90
|
+
*/
|
|
91
|
+
readonly id: string;
|
|
92
|
+
readonly parentFlowAlias: string;
|
|
93
|
+
/**
|
|
94
|
+
* (Keycloak 25+) The priority of the subflow within its parent flow.
|
|
95
|
+
*/
|
|
96
|
+
readonly priority: number;
|
|
97
|
+
/**
|
|
98
|
+
* The provider ID for the subflow (e.g., `basic-flow`, `form-flow`, or `client-flow`).
|
|
99
|
+
*/
|
|
100
|
+
readonly providerId: string;
|
|
101
|
+
readonly realmId: string;
|
|
102
|
+
/**
|
|
103
|
+
* The requirement setting for the subflow. Can be one of `REQUIRED`, `ALTERNATIVE`, `OPTIONAL`, `CONDITIONAL`, or `DISABLED`.
|
|
104
|
+
*/
|
|
105
|
+
readonly requirement: string;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* This data source can be used to fetch the details of an authentication subflow within Keycloak.
|
|
109
|
+
*
|
|
110
|
+
* An authentication subflow is a nested flow within a parent authentication flow that groups related authentication steps together.
|
|
111
|
+
*
|
|
112
|
+
* ## Example Usage
|
|
113
|
+
*
|
|
114
|
+
* ### Lookup by Alias (Human-readable)
|
|
115
|
+
*
|
|
116
|
+
* ```typescript
|
|
117
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
118
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
119
|
+
*
|
|
120
|
+
* const realm = new keycloak.Realm("realm", {
|
|
121
|
+
* realm: "my-realm",
|
|
122
|
+
* enabled: true,
|
|
123
|
+
* });
|
|
124
|
+
* const myFlow = new keycloak.authentication.Flow("my_flow", {
|
|
125
|
+
* realmId: realm.id,
|
|
126
|
+
* alias: "my-custom-flow",
|
|
127
|
+
* });
|
|
128
|
+
* const mySubflow = new keycloak.authentication.Subflow("my_subflow", {
|
|
129
|
+
* realmId: realm.id,
|
|
130
|
+
* parentFlowAlias: myFlow.alias,
|
|
131
|
+
* alias: "my-subflow",
|
|
132
|
+
* providerId: "basic-flow",
|
|
133
|
+
* });
|
|
134
|
+
* const subflow = keycloak.authentication.getSubflowOutput({
|
|
135
|
+
* realmId: realm.id,
|
|
136
|
+
* parentFlowAlias: myFlow.alias,
|
|
137
|
+
* alias: "my-subflow",
|
|
138
|
+
* });
|
|
139
|
+
* export const subflowId = subflow.apply(subflow => subflow.id);
|
|
140
|
+
* ```
|
|
141
|
+
*
|
|
142
|
+
* ### Lookup by ID (Direct)
|
|
143
|
+
*
|
|
144
|
+
* ```typescript
|
|
145
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
146
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
147
|
+
*
|
|
148
|
+
* const subflow = keycloak.authentication.getSubflow({
|
|
149
|
+
* realmId: "my-realm-id",
|
|
150
|
+
* parentFlowAlias: "browser",
|
|
151
|
+
* id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
152
|
+
* });
|
|
153
|
+
* export const subflowAlias = subflow.then(subflow => subflow.alias);
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
export declare function getSubflowOutput(args: GetSubflowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSubflowResult>;
|
|
157
|
+
/**
|
|
158
|
+
* A collection of arguments for invoking getSubflow.
|
|
159
|
+
*/
|
|
160
|
+
export interface GetSubflowOutputArgs {
|
|
161
|
+
/**
|
|
162
|
+
* The alias of the authentication subflow. Either `id` or `alias` must be specified.
|
|
163
|
+
*
|
|
164
|
+
* > **Note:** You must specify either `id` or `alias`, but not both. Use `id` for direct lookup by GUID, or `alias` for human-readable lookup by name.
|
|
165
|
+
*/
|
|
166
|
+
alias?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* The unique ID of the authentication subflow. Either `id` or `alias` must be specified.
|
|
169
|
+
*/
|
|
170
|
+
id?: pulumi.Input<string>;
|
|
171
|
+
/**
|
|
172
|
+
* The alias of the parent authentication flow.
|
|
173
|
+
*/
|
|
174
|
+
parentFlowAlias: pulumi.Input<string>;
|
|
175
|
+
/**
|
|
176
|
+
* The realm the authentication subflow exists in.
|
|
177
|
+
*/
|
|
178
|
+
realmId: pulumi.Input<string>;
|
|
179
|
+
}
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.getSubflowOutput = exports.getSubflow = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can be used to fetch the details of an authentication subflow within Keycloak.
|
|
10
|
+
*
|
|
11
|
+
* An authentication subflow is a nested flow within a parent authentication flow that groups related authentication steps together.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ### Lookup by Alias (Human-readable)
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
20
|
+
*
|
|
21
|
+
* const realm = new keycloak.Realm("realm", {
|
|
22
|
+
* realm: "my-realm",
|
|
23
|
+
* enabled: true,
|
|
24
|
+
* });
|
|
25
|
+
* const myFlow = new keycloak.authentication.Flow("my_flow", {
|
|
26
|
+
* realmId: realm.id,
|
|
27
|
+
* alias: "my-custom-flow",
|
|
28
|
+
* });
|
|
29
|
+
* const mySubflow = new keycloak.authentication.Subflow("my_subflow", {
|
|
30
|
+
* realmId: realm.id,
|
|
31
|
+
* parentFlowAlias: myFlow.alias,
|
|
32
|
+
* alias: "my-subflow",
|
|
33
|
+
* providerId: "basic-flow",
|
|
34
|
+
* });
|
|
35
|
+
* const subflow = keycloak.authentication.getSubflowOutput({
|
|
36
|
+
* realmId: realm.id,
|
|
37
|
+
* parentFlowAlias: myFlow.alias,
|
|
38
|
+
* alias: "my-subflow",
|
|
39
|
+
* });
|
|
40
|
+
* export const subflowId = subflow.apply(subflow => subflow.id);
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* ### Lookup by ID (Direct)
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
48
|
+
*
|
|
49
|
+
* const subflow = keycloak.authentication.getSubflow({
|
|
50
|
+
* realmId: "my-realm-id",
|
|
51
|
+
* parentFlowAlias: "browser",
|
|
52
|
+
* id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
53
|
+
* });
|
|
54
|
+
* export const subflowAlias = subflow.then(subflow => subflow.alias);
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
function getSubflow(args, opts) {
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
59
|
+
return pulumi.runtime.invoke("keycloak:authentication/getSubflow:getSubflow", {
|
|
60
|
+
"alias": args.alias,
|
|
61
|
+
"id": args.id,
|
|
62
|
+
"parentFlowAlias": args.parentFlowAlias,
|
|
63
|
+
"realmId": args.realmId,
|
|
64
|
+
}, opts);
|
|
65
|
+
}
|
|
66
|
+
exports.getSubflow = getSubflow;
|
|
67
|
+
/**
|
|
68
|
+
* This data source can be used to fetch the details of an authentication subflow within Keycloak.
|
|
69
|
+
*
|
|
70
|
+
* An authentication subflow is a nested flow within a parent authentication flow that groups related authentication steps together.
|
|
71
|
+
*
|
|
72
|
+
* ## Example Usage
|
|
73
|
+
*
|
|
74
|
+
* ### Lookup by Alias (Human-readable)
|
|
75
|
+
*
|
|
76
|
+
* ```typescript
|
|
77
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
79
|
+
*
|
|
80
|
+
* const realm = new keycloak.Realm("realm", {
|
|
81
|
+
* realm: "my-realm",
|
|
82
|
+
* enabled: true,
|
|
83
|
+
* });
|
|
84
|
+
* const myFlow = new keycloak.authentication.Flow("my_flow", {
|
|
85
|
+
* realmId: realm.id,
|
|
86
|
+
* alias: "my-custom-flow",
|
|
87
|
+
* });
|
|
88
|
+
* const mySubflow = new keycloak.authentication.Subflow("my_subflow", {
|
|
89
|
+
* realmId: realm.id,
|
|
90
|
+
* parentFlowAlias: myFlow.alias,
|
|
91
|
+
* alias: "my-subflow",
|
|
92
|
+
* providerId: "basic-flow",
|
|
93
|
+
* });
|
|
94
|
+
* const subflow = keycloak.authentication.getSubflowOutput({
|
|
95
|
+
* realmId: realm.id,
|
|
96
|
+
* parentFlowAlias: myFlow.alias,
|
|
97
|
+
* alias: "my-subflow",
|
|
98
|
+
* });
|
|
99
|
+
* export const subflowId = subflow.apply(subflow => subflow.id);
|
|
100
|
+
* ```
|
|
101
|
+
*
|
|
102
|
+
* ### Lookup by ID (Direct)
|
|
103
|
+
*
|
|
104
|
+
* ```typescript
|
|
105
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
106
|
+
* import * as keycloak from "@pulumi/keycloak";
|
|
107
|
+
*
|
|
108
|
+
* const subflow = keycloak.authentication.getSubflow({
|
|
109
|
+
* realmId: "my-realm-id",
|
|
110
|
+
* parentFlowAlias: "browser",
|
|
111
|
+
* id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
112
|
+
* });
|
|
113
|
+
* export const subflowAlias = subflow.then(subflow => subflow.alias);
|
|
114
|
+
* ```
|
|
115
|
+
*/
|
|
116
|
+
function getSubflowOutput(args, opts) {
|
|
117
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
118
|
+
return pulumi.runtime.invokeOutput("keycloak:authentication/getSubflow:getSubflow", {
|
|
119
|
+
"alias": args.alias,
|
|
120
|
+
"id": args.id,
|
|
121
|
+
"parentFlowAlias": args.parentFlowAlias,
|
|
122
|
+
"realmId": args.realmId,
|
|
123
|
+
}, opts);
|
|
124
|
+
}
|
|
125
|
+
exports.getSubflowOutput = getSubflowOutput;
|
|
126
|
+
//# sourceMappingURL=getSubflow.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSubflow.js","sourceRoot":"","sources":["../../authentication/getSubflow.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gCAQC;AA0DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+CAA+C,EAAE;QAChF,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4CAQC"}
|
|
@@ -10,6 +10,9 @@ export declare const ExecutionConfig: typeof import("./executionConfig").Executi
|
|
|
10
10
|
export { FlowArgs, FlowState } from "./flow";
|
|
11
11
|
export type Flow = import("./flow").Flow;
|
|
12
12
|
export declare const Flow: typeof import("./flow").Flow;
|
|
13
|
+
export { GetSubflowArgs, GetSubflowResult, GetSubflowOutputArgs } from "./getSubflow";
|
|
14
|
+
export declare const getSubflow: typeof import("./getSubflow").getSubflow;
|
|
15
|
+
export declare const getSubflowOutput: typeof import("./getSubflow").getSubflowOutput;
|
|
13
16
|
export { SubflowArgs, SubflowState } from "./subflow";
|
|
14
17
|
export type Subflow = import("./subflow").Subflow;
|
|
15
18
|
export declare const Subflow: typeof import("./subflow").Subflow;
|
package/authentication/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.Subflow = exports.Flow = exports.ExecutionConfig = exports.Execution = exports.Bindings = void 0;
|
|
5
|
+
exports.Subflow = exports.getSubflowOutput = exports.getSubflow = exports.Flow = exports.ExecutionConfig = exports.Execution = exports.Bindings = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Bindings = null;
|
|
@@ -13,6 +13,9 @@ exports.ExecutionConfig = null;
|
|
|
13
13
|
utilities.lazyLoad(exports, ["ExecutionConfig"], () => require("./executionConfig"));
|
|
14
14
|
exports.Flow = null;
|
|
15
15
|
utilities.lazyLoad(exports, ["Flow"], () => require("./flow"));
|
|
16
|
+
exports.getSubflow = null;
|
|
17
|
+
exports.getSubflowOutput = null;
|
|
18
|
+
utilities.lazyLoad(exports, ["getSubflow", "getSubflowOutput"], () => require("./getSubflow"));
|
|
16
19
|
exports.Subflow = null;
|
|
17
20
|
utilities.lazyLoad(exports, ["Subflow"], () => require("./subflow"));
|
|
18
21
|
const _module = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../authentication/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../authentication/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAGlD,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAIjF,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGrE,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,2CAA2C;gBAC5C,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,6CAA6C;gBAC9C,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,mCAAmC;gBACpC,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AAC5F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA"}
|
package/getGroup.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export declare function getGroup(args: GetGroupArgs, opts?: pulumi.InvokeOptions
|
|
|
33
33
|
* A collection of arguments for invoking getGroup.
|
|
34
34
|
*/
|
|
35
35
|
export interface GetGroupArgs {
|
|
36
|
+
description?: string;
|
|
36
37
|
/**
|
|
37
38
|
* The name of the group. If there are multiple groups match `name`, the first result will be returned.
|
|
38
39
|
*/
|
|
@@ -49,6 +50,7 @@ export interface GetGroupResult {
|
|
|
49
50
|
readonly attributes: {
|
|
50
51
|
[key: string]: string;
|
|
51
52
|
};
|
|
53
|
+
readonly description?: string;
|
|
52
54
|
/**
|
|
53
55
|
* The provider-assigned unique ID for this managed resource.
|
|
54
56
|
*/
|
|
@@ -92,6 +94,7 @@ export declare function getGroupOutput(args: GetGroupOutputArgs, opts?: pulumi.I
|
|
|
92
94
|
* A collection of arguments for invoking getGroup.
|
|
93
95
|
*/
|
|
94
96
|
export interface GetGroupOutputArgs {
|
|
97
|
+
description?: pulumi.Input<string>;
|
|
95
98
|
/**
|
|
96
99
|
* The name of the group. If there are multiple groups match `name`, the first result will be returned.
|
|
97
100
|
*/
|
package/getGroup.js
CHANGED
|
@@ -37,6 +37,7 @@ const utilities = require("./utilities");
|
|
|
37
37
|
function getGroup(args, opts) {
|
|
38
38
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
39
39
|
return pulumi.runtime.invoke("keycloak:index/getGroup:getGroup", {
|
|
40
|
+
"description": args.description,
|
|
40
41
|
"name": args.name,
|
|
41
42
|
"realmId": args.realmId,
|
|
42
43
|
}, opts);
|
|
@@ -74,6 +75,7 @@ exports.getGroup = getGroup;
|
|
|
74
75
|
function getGroupOutput(args, opts) {
|
|
75
76
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
76
77
|
return pulumi.runtime.invokeOutput("keycloak:index/getGroup:getGroup", {
|
|
78
|
+
"description": args.description,
|
|
77
79
|
"name": args.name,
|
|
78
80
|
"realmId": args.realmId,
|
|
79
81
|
}, opts);
|
package/getGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAgCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC"}
|
package/getRealm.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export interface GetRealmResult {
|
|
|
55
55
|
readonly accountTheme: string;
|
|
56
56
|
readonly actionTokenGeneratedByAdminLifespan: string;
|
|
57
57
|
readonly actionTokenGeneratedByUserLifespan: string;
|
|
58
|
+
readonly adminPermissionsEnabled: boolean;
|
|
58
59
|
readonly adminTheme: string;
|
|
59
60
|
readonly attributes: {
|
|
60
61
|
[key: string]: string;
|
package/getRealm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRealm.js","sourceRoot":"","sources":["../getRealm.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,4BAeC;
|
|
1
|
+
{"version":3,"file":"getRealm.js","sourceRoot":"","sources":["../getRealm.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,4BAeC;AA0FD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,uBAAuB,EAAE,IAAI,CAAC,qBAAqB;QACnD,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;QAC7D,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,wCAeC"}
|
package/group.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
76
76
|
readonly attributes: pulumi.Output<{
|
|
77
77
|
[key: string]: string;
|
|
78
78
|
} | undefined>;
|
|
79
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
79
80
|
/**
|
|
80
81
|
* The name of the group.
|
|
81
82
|
*/
|
|
@@ -111,6 +112,7 @@ export interface GroupState {
|
|
|
111
112
|
attributes?: pulumi.Input<{
|
|
112
113
|
[key: string]: pulumi.Input<string>;
|
|
113
114
|
}>;
|
|
115
|
+
description?: pulumi.Input<string>;
|
|
114
116
|
/**
|
|
115
117
|
* The name of the group.
|
|
116
118
|
*/
|
|
@@ -138,6 +140,7 @@ export interface GroupArgs {
|
|
|
138
140
|
attributes?: pulumi.Input<{
|
|
139
141
|
[key: string]: pulumi.Input<string>;
|
|
140
142
|
}>;
|
|
143
|
+
description?: pulumi.Input<string>;
|
|
141
144
|
/**
|
|
142
145
|
* The name of the group.
|
|
143
146
|
*/
|
package/group.js
CHANGED
|
@@ -89,6 +89,7 @@ class Group extends pulumi.CustomResource {
|
|
|
89
89
|
if (opts.id) {
|
|
90
90
|
const state = argsOrState;
|
|
91
91
|
resourceInputs["attributes"] = state?.attributes;
|
|
92
|
+
resourceInputs["description"] = state?.description;
|
|
92
93
|
resourceInputs["name"] = state?.name;
|
|
93
94
|
resourceInputs["parentId"] = state?.parentId;
|
|
94
95
|
resourceInputs["path"] = state?.path;
|
|
@@ -100,6 +101,7 @@ class Group extends pulumi.CustomResource {
|
|
|
100
101
|
throw new Error("Missing required property 'realmId'");
|
|
101
102
|
}
|
|
102
103
|
resourceInputs["attributes"] = args?.attributes;
|
|
104
|
+
resourceInputs["description"] = args?.description;
|
|
103
105
|
resourceInputs["name"] = args?.name;
|
|
104
106
|
resourceInputs["parentId"] = args?.parentId;
|
|
105
107
|
resourceInputs["realmId"] = args?.realmId;
|
package/group.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"group.js","sourceRoot":"","sources":["../group.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"group.js","sourceRoot":"","sources":["../group.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;IAgCD,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqC,CAAC;YACpD,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,EAAE,UAAU,CAAC;YACjD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,EAAE,OAAO,CAAC;SAC9C;aAAM;YACH,MAAM,IAAI,GAAG,WAAoC,CAAC;YAClD,IAAI,IAAI,EAAE,OAAO,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC1C,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,EAAE,UAAU,CAAC;YAChD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,OAAO,CAAC;YAC1C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1D,CAAC;;AAnFL,sBAoFC;AAtEG,gBAAgB;AACO,kBAAY,GAAG,4BAA4B,CAAC"}
|
package/ldap/userFederation.d.ts
CHANGED
|
@@ -92,6 +92,10 @@ export declare class UserFederation extends pulumi.CustomResource {
|
|
|
92
92
|
* How frequently Keycloak should sync changed LDAP users, in seconds. Omit this property to disable periodic changed users sync.
|
|
93
93
|
*/
|
|
94
94
|
readonly changedSyncPeriod: pulumi.Output<number | undefined>;
|
|
95
|
+
/**
|
|
96
|
+
* When `true`, LDAP connection pooling is enabled. Defaults to `false`.
|
|
97
|
+
*/
|
|
98
|
+
readonly connectionPooling: pulumi.Output<boolean | undefined>;
|
|
95
99
|
/**
|
|
96
100
|
* LDAP connection timeout in the format of a [Go duration string](https://golang.org/pkg/time/#Duration.String).
|
|
97
101
|
*/
|
|
@@ -104,6 +108,10 @@ export declare class UserFederation extends pulumi.CustomResource {
|
|
|
104
108
|
* Additional LDAP filter for filtering searched users. Must begin with `(` and end with `)`.
|
|
105
109
|
*/
|
|
106
110
|
readonly customUserSearchFilter: pulumi.Output<string | undefined>;
|
|
111
|
+
/**
|
|
112
|
+
* Can be one of `true` or `false`. Will enable/disable logging for Kerberos Authentication. Defaults to `false`:
|
|
113
|
+
*/
|
|
114
|
+
readonly debug: pulumi.Output<string | undefined>;
|
|
107
115
|
/**
|
|
108
116
|
* When true, the provider will delete the default mappers which are normally created by Keycloak when creating an LDAP user federation provider. Defaults to `false`.
|
|
109
117
|
*/
|
|
@@ -128,6 +136,10 @@ export declare class UserFederation extends pulumi.CustomResource {
|
|
|
128
136
|
* A block containing the kerberos settings.
|
|
129
137
|
*/
|
|
130
138
|
readonly kerberos: pulumi.Output<outputs.ldap.UserFederationKerberos | undefined>;
|
|
139
|
+
/**
|
|
140
|
+
* Name of the LDAP attribute, which refers to Kerberos principal. This is used to lookup appropriate LDAP user after successful Kerberos/SPNEGO authentication in Keycloak. When this is empty, the LDAP user will be looked based on LDAP username corresponding to the first part of his Kerberos principal. For instance, for principal 'john@KEYCLOAK.ORG', it will assume that LDAP username is 'john'.
|
|
141
|
+
*/
|
|
142
|
+
readonly krbPrincipalAttribute: pulumi.Output<string>;
|
|
131
143
|
/**
|
|
132
144
|
* Display name of the provider when displayed in the console.
|
|
133
145
|
*/
|
|
@@ -238,6 +250,10 @@ export interface UserFederationState {
|
|
|
238
250
|
* How frequently Keycloak should sync changed LDAP users, in seconds. Omit this property to disable periodic changed users sync.
|
|
239
251
|
*/
|
|
240
252
|
changedSyncPeriod?: pulumi.Input<number>;
|
|
253
|
+
/**
|
|
254
|
+
* When `true`, LDAP connection pooling is enabled. Defaults to `false`.
|
|
255
|
+
*/
|
|
256
|
+
connectionPooling?: pulumi.Input<boolean>;
|
|
241
257
|
/**
|
|
242
258
|
* LDAP connection timeout in the format of a [Go duration string](https://golang.org/pkg/time/#Duration.String).
|
|
243
259
|
*/
|
|
@@ -250,6 +266,10 @@ export interface UserFederationState {
|
|
|
250
266
|
* Additional LDAP filter for filtering searched users. Must begin with `(` and end with `)`.
|
|
251
267
|
*/
|
|
252
268
|
customUserSearchFilter?: pulumi.Input<string>;
|
|
269
|
+
/**
|
|
270
|
+
* Can be one of `true` or `false`. Will enable/disable logging for Kerberos Authentication. Defaults to `false`:
|
|
271
|
+
*/
|
|
272
|
+
debug?: pulumi.Input<string>;
|
|
253
273
|
/**
|
|
254
274
|
* When true, the provider will delete the default mappers which are normally created by Keycloak when creating an LDAP user federation provider. Defaults to `false`.
|
|
255
275
|
*/
|
|
@@ -274,6 +294,10 @@ export interface UserFederationState {
|
|
|
274
294
|
* A block containing the kerberos settings.
|
|
275
295
|
*/
|
|
276
296
|
kerberos?: pulumi.Input<inputs.ldap.UserFederationKerberos>;
|
|
297
|
+
/**
|
|
298
|
+
* Name of the LDAP attribute, which refers to Kerberos principal. This is used to lookup appropriate LDAP user after successful Kerberos/SPNEGO authentication in Keycloak. When this is empty, the LDAP user will be looked based on LDAP username corresponding to the first part of his Kerberos principal. For instance, for principal 'john@KEYCLOAK.ORG', it will assume that LDAP username is 'john'.
|
|
299
|
+
*/
|
|
300
|
+
krbPrincipalAttribute?: pulumi.Input<string>;
|
|
277
301
|
/**
|
|
278
302
|
* Display name of the provider when displayed in the console.
|
|
279
303
|
*/
|
|
@@ -376,6 +400,10 @@ export interface UserFederationArgs {
|
|
|
376
400
|
* How frequently Keycloak should sync changed LDAP users, in seconds. Omit this property to disable periodic changed users sync.
|
|
377
401
|
*/
|
|
378
402
|
changedSyncPeriod?: pulumi.Input<number>;
|
|
403
|
+
/**
|
|
404
|
+
* When `true`, LDAP connection pooling is enabled. Defaults to `false`.
|
|
405
|
+
*/
|
|
406
|
+
connectionPooling?: pulumi.Input<boolean>;
|
|
379
407
|
/**
|
|
380
408
|
* LDAP connection timeout in the format of a [Go duration string](https://golang.org/pkg/time/#Duration.String).
|
|
381
409
|
*/
|
|
@@ -388,6 +416,10 @@ export interface UserFederationArgs {
|
|
|
388
416
|
* Additional LDAP filter for filtering searched users. Must begin with `(` and end with `)`.
|
|
389
417
|
*/
|
|
390
418
|
customUserSearchFilter?: pulumi.Input<string>;
|
|
419
|
+
/**
|
|
420
|
+
* Can be one of `true` or `false`. Will enable/disable logging for Kerberos Authentication. Defaults to `false`:
|
|
421
|
+
*/
|
|
422
|
+
debug?: pulumi.Input<string>;
|
|
391
423
|
/**
|
|
392
424
|
* When true, the provider will delete the default mappers which are normally created by Keycloak when creating an LDAP user federation provider. Defaults to `false`.
|
|
393
425
|
*/
|
|
@@ -412,6 +444,10 @@ export interface UserFederationArgs {
|
|
|
412
444
|
* A block containing the kerberos settings.
|
|
413
445
|
*/
|
|
414
446
|
kerberos?: pulumi.Input<inputs.ldap.UserFederationKerberos>;
|
|
447
|
+
/**
|
|
448
|
+
* Name of the LDAP attribute, which refers to Kerberos principal. This is used to lookup appropriate LDAP user after successful Kerberos/SPNEGO authentication in Keycloak. When this is empty, the LDAP user will be looked based on LDAP username corresponding to the first part of his Kerberos principal. For instance, for principal 'john@KEYCLOAK.ORG', it will assume that LDAP username is 'john'.
|
|
449
|
+
*/
|
|
450
|
+
krbPrincipalAttribute?: pulumi.Input<string>;
|
|
415
451
|
/**
|
|
416
452
|
* Display name of the provider when displayed in the console.
|
|
417
453
|
*/
|
package/ldap/userFederation.js
CHANGED
|
@@ -93,15 +93,18 @@ class UserFederation extends pulumi.CustomResource {
|
|
|
93
93
|
resourceInputs["bindDn"] = state?.bindDn;
|
|
94
94
|
resourceInputs["cache"] = state?.cache;
|
|
95
95
|
resourceInputs["changedSyncPeriod"] = state?.changedSyncPeriod;
|
|
96
|
+
resourceInputs["connectionPooling"] = state?.connectionPooling;
|
|
96
97
|
resourceInputs["connectionTimeout"] = state?.connectionTimeout;
|
|
97
98
|
resourceInputs["connectionUrl"] = state?.connectionUrl;
|
|
98
99
|
resourceInputs["customUserSearchFilter"] = state?.customUserSearchFilter;
|
|
100
|
+
resourceInputs["debug"] = state?.debug;
|
|
99
101
|
resourceInputs["deleteDefaultMappers"] = state?.deleteDefaultMappers;
|
|
100
102
|
resourceInputs["editMode"] = state?.editMode;
|
|
101
103
|
resourceInputs["enabled"] = state?.enabled;
|
|
102
104
|
resourceInputs["fullSyncPeriod"] = state?.fullSyncPeriod;
|
|
103
105
|
resourceInputs["importEnabled"] = state?.importEnabled;
|
|
104
106
|
resourceInputs["kerberos"] = state?.kerberos;
|
|
107
|
+
resourceInputs["krbPrincipalAttribute"] = state?.krbPrincipalAttribute;
|
|
105
108
|
resourceInputs["name"] = state?.name;
|
|
106
109
|
resourceInputs["pagination"] = state?.pagination;
|
|
107
110
|
resourceInputs["priority"] = state?.priority;
|
|
@@ -149,15 +152,18 @@ class UserFederation extends pulumi.CustomResource {
|
|
|
149
152
|
resourceInputs["bindDn"] = args?.bindDn;
|
|
150
153
|
resourceInputs["cache"] = args?.cache;
|
|
151
154
|
resourceInputs["changedSyncPeriod"] = args?.changedSyncPeriod;
|
|
155
|
+
resourceInputs["connectionPooling"] = args?.connectionPooling;
|
|
152
156
|
resourceInputs["connectionTimeout"] = args?.connectionTimeout;
|
|
153
157
|
resourceInputs["connectionUrl"] = args?.connectionUrl;
|
|
154
158
|
resourceInputs["customUserSearchFilter"] = args?.customUserSearchFilter;
|
|
159
|
+
resourceInputs["debug"] = args?.debug;
|
|
155
160
|
resourceInputs["deleteDefaultMappers"] = args?.deleteDefaultMappers;
|
|
156
161
|
resourceInputs["editMode"] = args?.editMode;
|
|
157
162
|
resourceInputs["enabled"] = args?.enabled;
|
|
158
163
|
resourceInputs["fullSyncPeriod"] = args?.fullSyncPeriod;
|
|
159
164
|
resourceInputs["importEnabled"] = args?.importEnabled;
|
|
160
165
|
resourceInputs["kerberos"] = args?.kerberos;
|
|
166
|
+
resourceInputs["krbPrincipalAttribute"] = args?.krbPrincipalAttribute;
|
|
161
167
|
resourceInputs["name"] = args?.name;
|
|
162
168
|
resourceInputs["pagination"] = args?.pagination;
|
|
163
169
|
resourceInputs["priority"] = args?.priority;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userFederation.js","sourceRoot":"","sources":["../../ldap/userFederation.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsDG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"userFederation.js","sourceRoot":"","sources":["../../ldap/userFederation.ts"],"names":[],"mappings":"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"}
|