@pulumi/keycloak 5.3.3 → 5.3.4
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/attributeImporterIdentityProviderMapper.d.ts +3 -3
- package/attributeToRoleIdentityMapper.d.ts +3 -3
- package/customIdentityProviderMapping.d.ts +3 -3
- package/customUserFederation.d.ts +3 -3
- package/genericClientProtocolMapper.d.ts +3 -3
- package/genericProtocolMapper.d.ts +3 -3
- package/getAuthenticationExecution.js +6 -1
- package/getAuthenticationExecution.js.map +1 -1
- package/getAuthenticationFlow.js +5 -1
- package/getAuthenticationFlow.js.map +1 -1
- package/getClientDescriptionConverter.d.ts +5 -5
- package/getClientDescriptionConverter.js +5 -1
- package/getClientDescriptionConverter.js.map +1 -1
- package/getGroup.d.ts +1 -1
- package/getGroup.js +5 -1
- package/getGroup.js.map +1 -1
- package/getRealm.d.ts +3 -3
- package/getRealm.js +14 -1
- package/getRealm.js.map +1 -1
- package/getRealmKeys.js +6 -1
- package/getRealmKeys.js.map +1 -1
- package/getRole.d.ts +1 -1
- package/getRole.js +6 -1
- package/getRole.js.map +1 -1
- package/getUser.d.ts +1 -1
- package/getUser.js +5 -1
- package/getUser.js.map +1 -1
- package/getUserRealmRoles.js +5 -1
- package/getUserRealmRoles.js.map +1 -1
- package/group.d.ts +3 -3
- package/hardcodedAttributeIdentityProviderMapper.d.ts +3 -3
- package/hardcodedRoleIdentityMapper.d.ts +3 -3
- package/ldap/customMapper.d.ts +3 -3
- package/oidc/googleIdentityProvider.d.ts +3 -3
- package/oidc/identityProvider.d.ts +3 -3
- package/openid/client.d.ts +3 -3
- package/openid/clientAuthorizationResource.d.ts +3 -3
- package/openid/getClient.d.ts +3 -3
- package/openid/getClient.js +11 -1
- package/openid/getClient.js.map +1 -1
- package/openid/getClientAuthorizationPolicy.js +6 -1
- package/openid/getClientAuthorizationPolicy.js.map +1 -1
- package/openid/getClientScope.js +5 -1
- package/openid/getClientScope.js.map +1 -1
- package/openid/getClientServiceAccountUser.d.ts +1 -1
- package/openid/getClientServiceAccountUser.js +5 -1
- package/openid/getClientServiceAccountUser.js.map +1 -1
- package/package.json +2 -2
- package/realm.d.ts +3 -3
- package/realmUserProfile.d.ts +1 -1
- package/realmUserProfile.js +1 -1
- package/role.d.ts +3 -3
- package/saml/client.d.ts +3 -3
- package/saml/getClient.d.ts +1 -1
- package/saml/getClient.js +5 -1
- package/saml/getClient.js.map +1 -1
- package/saml/getClientInstallationProvider.js +6 -1
- package/saml/getClientInstallationProvider.js.map +1 -1
- package/saml/identityProvider.d.ts +3 -3
- package/types/output.d.ts +1 -1
- package/user.d.ts +3 -3
- package/userTemplateImporterIdentityProviderMapper.d.ts +3 -3
|
@@ -67,7 +67,7 @@ export declare class AttributeImporterIdentityProviderMapper extends pulumi.Cust
|
|
|
67
67
|
*/
|
|
68
68
|
readonly claimName: pulumi.Output<string | undefined>;
|
|
69
69
|
readonly extraConfig: pulumi.Output<{
|
|
70
|
-
[key: string]:
|
|
70
|
+
[key: string]: string;
|
|
71
71
|
} | undefined>;
|
|
72
72
|
/**
|
|
73
73
|
* IDP Alias
|
|
@@ -111,7 +111,7 @@ export interface AttributeImporterIdentityProviderMapperState {
|
|
|
111
111
|
*/
|
|
112
112
|
claimName?: pulumi.Input<string>;
|
|
113
113
|
extraConfig?: pulumi.Input<{
|
|
114
|
-
[key: string]:
|
|
114
|
+
[key: string]: pulumi.Input<string>;
|
|
115
115
|
}>;
|
|
116
116
|
/**
|
|
117
117
|
* IDP Alias
|
|
@@ -147,7 +147,7 @@ export interface AttributeImporterIdentityProviderMapperArgs {
|
|
|
147
147
|
*/
|
|
148
148
|
claimName?: pulumi.Input<string>;
|
|
149
149
|
extraConfig?: pulumi.Input<{
|
|
150
|
-
[key: string]:
|
|
150
|
+
[key: string]: pulumi.Input<string>;
|
|
151
151
|
}>;
|
|
152
152
|
/**
|
|
153
153
|
* IDP Alias
|
|
@@ -95,7 +95,7 @@ export declare class AttributeToRoleIdentityMapper extends pulumi.CustomResource
|
|
|
95
95
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
96
96
|
*/
|
|
97
97
|
readonly extraConfig: pulumi.Output<{
|
|
98
|
-
[key: string]:
|
|
98
|
+
[key: string]: string;
|
|
99
99
|
} | undefined>;
|
|
100
100
|
/**
|
|
101
101
|
* The alias of the associated identity provider.
|
|
@@ -150,7 +150,7 @@ export interface AttributeToRoleIdentityMapperState {
|
|
|
150
150
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
151
151
|
*/
|
|
152
152
|
extraConfig?: pulumi.Input<{
|
|
153
|
-
[key: string]:
|
|
153
|
+
[key: string]: pulumi.Input<string>;
|
|
154
154
|
}>;
|
|
155
155
|
/**
|
|
156
156
|
* The alias of the associated identity provider.
|
|
@@ -197,7 +197,7 @@ export interface AttributeToRoleIdentityMapperArgs {
|
|
|
197
197
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
198
198
|
*/
|
|
199
199
|
extraConfig?: pulumi.Input<{
|
|
200
|
-
[key: string]:
|
|
200
|
+
[key: string]: pulumi.Input<string>;
|
|
201
201
|
}>;
|
|
202
202
|
/**
|
|
203
203
|
* The alias of the associated identity provider.
|
|
@@ -66,7 +66,7 @@ export declare class CustomIdentityProviderMapping extends pulumi.CustomResource
|
|
|
66
66
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
67
67
|
*/
|
|
68
68
|
readonly extraConfig: pulumi.Output<{
|
|
69
|
-
[key: string]:
|
|
69
|
+
[key: string]: string;
|
|
70
70
|
} | undefined>;
|
|
71
71
|
/**
|
|
72
72
|
* The alias of the associated identity provider.
|
|
@@ -101,7 +101,7 @@ export interface CustomIdentityProviderMappingState {
|
|
|
101
101
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
102
102
|
*/
|
|
103
103
|
extraConfig?: pulumi.Input<{
|
|
104
|
-
[key: string]:
|
|
104
|
+
[key: string]: pulumi.Input<string>;
|
|
105
105
|
}>;
|
|
106
106
|
/**
|
|
107
107
|
* The alias of the associated identity provider.
|
|
@@ -128,7 +128,7 @@ export interface CustomIdentityProviderMappingArgs {
|
|
|
128
128
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
129
129
|
*/
|
|
130
130
|
extraConfig?: pulumi.Input<{
|
|
131
|
-
[key: string]:
|
|
131
|
+
[key: string]: pulumi.Input<string>;
|
|
132
132
|
}>;
|
|
133
133
|
/**
|
|
134
134
|
* The alias of the associated identity provider.
|
|
@@ -65,7 +65,7 @@ export declare class CustomUserFederation extends pulumi.CustomResource {
|
|
|
65
65
|
*/
|
|
66
66
|
readonly changedSyncPeriod: pulumi.Output<number | undefined>;
|
|
67
67
|
readonly config: pulumi.Output<{
|
|
68
|
-
[key: string]:
|
|
68
|
+
[key: string]: string;
|
|
69
69
|
} | undefined>;
|
|
70
70
|
/**
|
|
71
71
|
* When false, this provider will not be used when performing queries for users.
|
|
@@ -116,7 +116,7 @@ export interface CustomUserFederationState {
|
|
|
116
116
|
*/
|
|
117
117
|
changedSyncPeriod?: pulumi.Input<number>;
|
|
118
118
|
config?: pulumi.Input<{
|
|
119
|
-
[key: string]:
|
|
119
|
+
[key: string]: pulumi.Input<string>;
|
|
120
120
|
}>;
|
|
121
121
|
/**
|
|
122
122
|
* When false, this provider will not be used when performing queries for users.
|
|
@@ -159,7 +159,7 @@ export interface CustomUserFederationArgs {
|
|
|
159
159
|
*/
|
|
160
160
|
changedSyncPeriod?: pulumi.Input<number>;
|
|
161
161
|
config?: pulumi.Input<{
|
|
162
|
-
[key: string]:
|
|
162
|
+
[key: string]: pulumi.Input<string>;
|
|
163
163
|
}>;
|
|
164
164
|
/**
|
|
165
165
|
* When false, this provider will not be used when performing queries for users.
|
|
@@ -83,7 +83,7 @@ export declare class GenericClientProtocolMapper extends pulumi.CustomResource {
|
|
|
83
83
|
*/
|
|
84
84
|
readonly clientScopeId: pulumi.Output<string | undefined>;
|
|
85
85
|
readonly config: pulumi.Output<{
|
|
86
|
-
[key: string]:
|
|
86
|
+
[key: string]: string;
|
|
87
87
|
}>;
|
|
88
88
|
/**
|
|
89
89
|
* A human-friendly name that will appear in the Keycloak console.
|
|
@@ -123,7 +123,7 @@ export interface GenericClientProtocolMapperState {
|
|
|
123
123
|
*/
|
|
124
124
|
clientScopeId?: pulumi.Input<string>;
|
|
125
125
|
config?: pulumi.Input<{
|
|
126
|
-
[key: string]:
|
|
126
|
+
[key: string]: pulumi.Input<string>;
|
|
127
127
|
}>;
|
|
128
128
|
/**
|
|
129
129
|
* A human-friendly name that will appear in the Keycloak console.
|
|
@@ -155,7 +155,7 @@ export interface GenericClientProtocolMapperArgs {
|
|
|
155
155
|
*/
|
|
156
156
|
clientScopeId?: pulumi.Input<string>;
|
|
157
157
|
config: pulumi.Input<{
|
|
158
|
-
[key: string]:
|
|
158
|
+
[key: string]: pulumi.Input<string>;
|
|
159
159
|
}>;
|
|
160
160
|
/**
|
|
161
161
|
* A human-friendly name that will appear in the Keycloak console.
|
|
@@ -78,7 +78,7 @@ export declare class GenericProtocolMapper extends pulumi.CustomResource {
|
|
|
78
78
|
* A map with key / value pairs for configuring the protocol mapper. The supported keys depends on the protocol mapper.
|
|
79
79
|
*/
|
|
80
80
|
readonly config: pulumi.Output<{
|
|
81
|
-
[key: string]:
|
|
81
|
+
[key: string]: string;
|
|
82
82
|
}>;
|
|
83
83
|
/**
|
|
84
84
|
* The display name of this protocol mapper in the GUI.
|
|
@@ -121,7 +121,7 @@ export interface GenericProtocolMapperState {
|
|
|
121
121
|
* A map with key / value pairs for configuring the protocol mapper. The supported keys depends on the protocol mapper.
|
|
122
122
|
*/
|
|
123
123
|
config?: pulumi.Input<{
|
|
124
|
-
[key: string]:
|
|
124
|
+
[key: string]: pulumi.Input<string>;
|
|
125
125
|
}>;
|
|
126
126
|
/**
|
|
127
127
|
* The display name of this protocol mapper in the GUI.
|
|
@@ -156,7 +156,7 @@ export interface GenericProtocolMapperArgs {
|
|
|
156
156
|
* A map with key / value pairs for configuring the protocol mapper. The supported keys depends on the protocol mapper.
|
|
157
157
|
*/
|
|
158
158
|
config: pulumi.Input<{
|
|
159
|
-
[key: string]:
|
|
159
|
+
[key: string]: pulumi.Input<string>;
|
|
160
160
|
}>;
|
|
161
161
|
/**
|
|
162
162
|
* The display name of this protocol mapper in the GUI.
|
|
@@ -55,7 +55,12 @@ exports.getAuthenticationExecution = getAuthenticationExecution;
|
|
|
55
55
|
* ```
|
|
56
56
|
*/
|
|
57
57
|
function getAuthenticationExecutionOutput(args, opts) {
|
|
58
|
-
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
59
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getAuthenticationExecution:getAuthenticationExecution", {
|
|
60
|
+
"parentFlowAlias": args.parentFlowAlias,
|
|
61
|
+
"providerId": args.providerId,
|
|
62
|
+
"realmId": args.realmId,
|
|
63
|
+
}, opts);
|
|
59
64
|
}
|
|
60
65
|
exports.getAuthenticationExecutionOutput = getAuthenticationExecutionOutput;
|
|
61
66
|
//# sourceMappingURL=getAuthenticationExecution.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAuthenticationExecution.js","sourceRoot":"","sources":["../getAuthenticationExecution.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getAuthenticationExecution.js","sourceRoot":"","sources":["../getAuthenticationExecution.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gEAOC;AAgCD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IACpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sEAAsE,EAAE;QACvG,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4EAOC"}
|
package/getAuthenticationFlow.js
CHANGED
|
@@ -52,7 +52,11 @@ exports.getAuthenticationFlow = getAuthenticationFlow;
|
|
|
52
52
|
* ```
|
|
53
53
|
*/
|
|
54
54
|
function getAuthenticationFlowOutput(args, opts) {
|
|
55
|
-
|
|
55
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
56
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getAuthenticationFlow:getAuthenticationFlow", {
|
|
57
|
+
"alias": args.alias,
|
|
58
|
+
"realmId": args.realmId,
|
|
59
|
+
}, opts);
|
|
56
60
|
}
|
|
57
61
|
exports.getAuthenticationFlowOutput = getAuthenticationFlowOutput;
|
|
58
62
|
//# sourceMappingURL=getAuthenticationFlow.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAuthenticationFlow.js","sourceRoot":"","sources":["../getAuthenticationFlow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getAuthenticationFlow.js","sourceRoot":"","sources":["../getAuthenticationFlow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sDAMC;AA2BD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC"}
|
|
@@ -70,18 +70,18 @@ export interface GetClientDescriptionConverterArgs {
|
|
|
70
70
|
*/
|
|
71
71
|
export interface GetClientDescriptionConverterResult {
|
|
72
72
|
readonly access: {
|
|
73
|
-
[key: string]:
|
|
73
|
+
[key: string]: string;
|
|
74
74
|
};
|
|
75
75
|
readonly adminUrl: string;
|
|
76
76
|
readonly attributes: {
|
|
77
|
-
[key: string]:
|
|
77
|
+
[key: string]: string;
|
|
78
78
|
};
|
|
79
79
|
readonly authenticationFlowBindingOverrides: {
|
|
80
|
-
[key: string]:
|
|
80
|
+
[key: string]: string;
|
|
81
81
|
};
|
|
82
82
|
readonly authorizationServicesEnabled: boolean;
|
|
83
83
|
readonly authorizationSettings: {
|
|
84
|
-
[key: string]:
|
|
84
|
+
[key: string]: string;
|
|
85
85
|
};
|
|
86
86
|
readonly baseUrl: string;
|
|
87
87
|
readonly bearerOnly: boolean;
|
|
@@ -111,7 +111,7 @@ export interface GetClientDescriptionConverterResult {
|
|
|
111
111
|
readonly realmId: string;
|
|
112
112
|
readonly redirectUris: string[];
|
|
113
113
|
readonly registeredNodes: {
|
|
114
|
-
[key: string]:
|
|
114
|
+
[key: string]: string;
|
|
115
115
|
};
|
|
116
116
|
readonly registrationAccessToken: string;
|
|
117
117
|
readonly rootUrl: string;
|
|
@@ -116,7 +116,11 @@ exports.getClientDescriptionConverter = getClientDescriptionConverter;
|
|
|
116
116
|
* ```
|
|
117
117
|
*/
|
|
118
118
|
function getClientDescriptionConverterOutput(args, opts) {
|
|
119
|
-
|
|
119
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
120
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getClientDescriptionConverter:getClientDescriptionConverter", {
|
|
121
|
+
"body": args.body,
|
|
122
|
+
"realmId": args.realmId,
|
|
123
|
+
}, opts);
|
|
120
124
|
}
|
|
121
125
|
exports.getClientDescriptionConverterOutput = getClientDescriptionConverterOutput;
|
|
122
126
|
//# sourceMappingURL=getClientDescriptionConverter.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClientDescriptionConverter.js","sourceRoot":"","sources":["../getClientDescriptionConverter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClientDescriptionConverter.js","sourceRoot":"","sources":["../getClientDescriptionConverter.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4EAA4E,EAAE;QACvG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sEAMC;AA8DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AACH,SAAgB,mCAAmC,CAAC,IAA6C,EAAE,IAA2B;IAC1H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4EAA4E,EAAE;QAC7G,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kFAMC"}
|
package/getGroup.d.ts
CHANGED
package/getGroup.js
CHANGED
|
@@ -26,7 +26,11 @@ exports.getGroup = getGroup;
|
|
|
26
26
|
* usage with other resources, such as `keycloak.GroupRoles`.
|
|
27
27
|
*/
|
|
28
28
|
function getGroupOutput(args, opts) {
|
|
29
|
-
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getGroup:getGroup", {
|
|
31
|
+
"name": args.name,
|
|
32
|
+
"realmId": args.realmId,
|
|
33
|
+
}, opts);
|
|
30
34
|
}
|
|
31
35
|
exports.getGroupOutput = getGroupOutput;
|
|
32
36
|
//# sourceMappingURL=getGroup.js.map
|
package/getGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getGroup.js","sourceRoot":"","sources":["../getGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;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;AAND,4BAMC;AAwBD;;;;;GAKG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC"}
|
package/getRealm.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ export declare function getRealm(args: GetRealmArgs, opts?: pulumi.InvokeOptions
|
|
|
39
39
|
*/
|
|
40
40
|
export interface GetRealmArgs {
|
|
41
41
|
attributes?: {
|
|
42
|
-
[key: string]:
|
|
42
|
+
[key: string]: string;
|
|
43
43
|
};
|
|
44
44
|
defaultDefaultClientScopes?: string[];
|
|
45
45
|
defaultOptionalClientScopes?: string[];
|
|
@@ -66,7 +66,7 @@ export interface GetRealmResult {
|
|
|
66
66
|
readonly actionTokenGeneratedByUserLifespan: string;
|
|
67
67
|
readonly adminTheme: string;
|
|
68
68
|
readonly attributes: {
|
|
69
|
-
[key: string]:
|
|
69
|
+
[key: string]: string;
|
|
70
70
|
};
|
|
71
71
|
readonly browserFlow: string;
|
|
72
72
|
readonly clientAuthenticationFlow: string;
|
|
@@ -157,7 +157,7 @@ export declare function getRealmOutput(args: GetRealmOutputArgs, opts?: pulumi.I
|
|
|
157
157
|
*/
|
|
158
158
|
export interface GetRealmOutputArgs {
|
|
159
159
|
attributes?: pulumi.Input<{
|
|
160
|
-
[key: string]:
|
|
160
|
+
[key: string]: pulumi.Input<string>;
|
|
161
161
|
}>;
|
|
162
162
|
defaultDefaultClientScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
163
163
|
defaultOptionalClientScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
package/getRealm.js
CHANGED
|
@@ -87,7 +87,20 @@ exports.getRealm = getRealm;
|
|
|
87
87
|
* See the docs for the `keycloak.Realm` resource for details on the exported attributes.
|
|
88
88
|
*/
|
|
89
89
|
function getRealmOutput(args, opts) {
|
|
90
|
-
|
|
90
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
91
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getRealm:getRealm", {
|
|
92
|
+
"attributes": args.attributes,
|
|
93
|
+
"defaultDefaultClientScopes": args.defaultDefaultClientScopes,
|
|
94
|
+
"defaultOptionalClientScopes": args.defaultOptionalClientScopes,
|
|
95
|
+
"displayNameHtml": args.displayNameHtml,
|
|
96
|
+
"internationalizations": args.internationalizations,
|
|
97
|
+
"otpPolicy": args.otpPolicy,
|
|
98
|
+
"realm": args.realm,
|
|
99
|
+
"securityDefenses": args.securityDefenses,
|
|
100
|
+
"smtpServers": args.smtpServers,
|
|
101
|
+
"webAuthnPasswordlessPolicy": args.webAuthnPasswordlessPolicy,
|
|
102
|
+
"webAuthnPolicy": args.webAuthnPolicy,
|
|
103
|
+
}, opts);
|
|
91
104
|
}
|
|
92
105
|
exports.getRealmOutput = getRealmOutput;
|
|
93
106
|
//# sourceMappingURL=getRealm.js.map
|
package/getRealm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRealm.js","sourceRoot":"","sources":["../getRealm.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getRealm.js","sourceRoot":"","sources":["../getRealm.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;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;AAoFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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/getRealmKeys.js
CHANGED
|
@@ -37,7 +37,12 @@ exports.getRealmKeys = getRealmKeys;
|
|
|
37
37
|
* - If no key matches the filter criteria, then an error is returned.
|
|
38
38
|
*/
|
|
39
39
|
function getRealmKeysOutput(args, opts) {
|
|
40
|
-
|
|
40
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
41
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getRealmKeys:getRealmKeys", {
|
|
42
|
+
"algorithms": args.algorithms,
|
|
43
|
+
"realmId": args.realmId,
|
|
44
|
+
"statuses": args.statuses,
|
|
45
|
+
}, opts);
|
|
41
46
|
}
|
|
42
47
|
exports.getRealmKeysOutput = getRealmKeysOutput;
|
|
43
48
|
//# sourceMappingURL=getRealmKeys.js.map
|
package/getRealmKeys.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRealmKeys.js","sourceRoot":"","sources":["../getRealmKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getRealmKeys.js","sourceRoot":"","sources":["../getRealmKeys.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;GAUG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oCAOC;AAwBD;;;;;;;;;;GAUG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC"}
|
package/getRole.d.ts
CHANGED
package/getRole.js
CHANGED
|
@@ -27,7 +27,12 @@ exports.getRole = getRole;
|
|
|
27
27
|
* usage with other resources, such as `keycloak.GroupRoles`.
|
|
28
28
|
*/
|
|
29
29
|
function getRoleOutput(args, opts) {
|
|
30
|
-
|
|
30
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
31
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getRole:getRole", {
|
|
32
|
+
"clientId": args.clientId,
|
|
33
|
+
"name": args.name,
|
|
34
|
+
"realmId": args.realmId,
|
|
35
|
+
}, opts);
|
|
31
36
|
}
|
|
32
37
|
exports.getRoleOutput = getRoleOutput;
|
|
33
38
|
//# sourceMappingURL=getRole.js.map
|
package/getRole.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getRole.js","sourceRoot":"","sources":["../getRole.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;GAKG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0BAOC;AA0BD;;;;;GAKG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC"}
|
package/getUser.d.ts
CHANGED
package/getUser.js
CHANGED
|
@@ -54,7 +54,11 @@ exports.getUser = getUser;
|
|
|
54
54
|
* ```
|
|
55
55
|
*/
|
|
56
56
|
function getUserOutput(args, opts) {
|
|
57
|
-
|
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
58
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getUser:getUser", {
|
|
59
|
+
"realmId": args.realmId,
|
|
60
|
+
"username": args.username,
|
|
61
|
+
}, opts);
|
|
58
62
|
}
|
|
59
63
|
exports.getUserOutput = getUserOutput;
|
|
60
64
|
//# sourceMappingURL=getUser.js.map
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0BAMC;AAwDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC"}
|
package/getUserRealmRoles.js
CHANGED
|
@@ -64,7 +64,11 @@ exports.getUserRealmRoles = getUserRealmRoles;
|
|
|
64
64
|
* ```
|
|
65
65
|
*/
|
|
66
66
|
function getUserRealmRolesOutput(args, opts) {
|
|
67
|
-
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("keycloak:index/getUserRealmRoles:getUserRealmRoles", {
|
|
69
|
+
"realmId": args.realmId,
|
|
70
|
+
"userId": args.userId,
|
|
71
|
+
}, opts);
|
|
68
72
|
}
|
|
69
73
|
exports.getUserRealmRolesOutput = getUserRealmRolesOutput;
|
|
70
74
|
//# sourceMappingURL=getUserRealmRoles.js.map
|
package/getUserRealmRoles.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUserRealmRoles.js","sourceRoot":"","sources":["../getUserRealmRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getUserRealmRoles.js","sourceRoot":"","sources":["../getUserRealmRoles.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AA+BD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC"}
|
package/group.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
82
82
|
*/
|
|
83
83
|
static isInstance(obj: any): obj is Group;
|
|
84
84
|
readonly attributes: pulumi.Output<{
|
|
85
|
-
[key: string]:
|
|
85
|
+
[key: string]: string;
|
|
86
86
|
} | undefined>;
|
|
87
87
|
readonly name: pulumi.Output<string>;
|
|
88
88
|
readonly parentId: pulumi.Output<string | undefined>;
|
|
@@ -102,7 +102,7 @@ export declare class Group extends pulumi.CustomResource {
|
|
|
102
102
|
*/
|
|
103
103
|
export interface GroupState {
|
|
104
104
|
attributes?: pulumi.Input<{
|
|
105
|
-
[key: string]:
|
|
105
|
+
[key: string]: pulumi.Input<string>;
|
|
106
106
|
}>;
|
|
107
107
|
name?: pulumi.Input<string>;
|
|
108
108
|
parentId?: pulumi.Input<string>;
|
|
@@ -114,7 +114,7 @@ export interface GroupState {
|
|
|
114
114
|
*/
|
|
115
115
|
export interface GroupArgs {
|
|
116
116
|
attributes?: pulumi.Input<{
|
|
117
|
-
[key: string]:
|
|
117
|
+
[key: string]: pulumi.Input<string>;
|
|
118
118
|
}>;
|
|
119
119
|
name?: pulumi.Input<string>;
|
|
120
120
|
parentId?: pulumi.Input<string>;
|
|
@@ -60,7 +60,7 @@ export declare class HardcodedAttributeIdentityProviderMapper extends pulumi.Cus
|
|
|
60
60
|
*/
|
|
61
61
|
readonly attributeValue: pulumi.Output<string | undefined>;
|
|
62
62
|
readonly extraConfig: pulumi.Output<{
|
|
63
|
-
[key: string]:
|
|
63
|
+
[key: string]: string;
|
|
64
64
|
} | undefined>;
|
|
65
65
|
/**
|
|
66
66
|
* The IDP alias of the attribute to set.
|
|
@@ -100,7 +100,7 @@ export interface HardcodedAttributeIdentityProviderMapperState {
|
|
|
100
100
|
*/
|
|
101
101
|
attributeValue?: pulumi.Input<string>;
|
|
102
102
|
extraConfig?: pulumi.Input<{
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: pulumi.Input<string>;
|
|
104
104
|
}>;
|
|
105
105
|
/**
|
|
106
106
|
* The IDP alias of the attribute to set.
|
|
@@ -132,7 +132,7 @@ export interface HardcodedAttributeIdentityProviderMapperArgs {
|
|
|
132
132
|
*/
|
|
133
133
|
attributeValue?: pulumi.Input<string>;
|
|
134
134
|
extraConfig?: pulumi.Input<{
|
|
135
|
-
[key: string]:
|
|
135
|
+
[key: string]: pulumi.Input<string>;
|
|
136
136
|
}>;
|
|
137
137
|
/**
|
|
138
138
|
* The IDP alias of the attribute to set.
|
|
@@ -55,7 +55,7 @@ export declare class HardcodedRoleIdentityMapper extends pulumi.CustomResource {
|
|
|
55
55
|
*/
|
|
56
56
|
static isInstance(obj: any): obj is HardcodedRoleIdentityMapper;
|
|
57
57
|
readonly extraConfig: pulumi.Output<{
|
|
58
|
-
[key: string]:
|
|
58
|
+
[key: string]: string;
|
|
59
59
|
} | undefined>;
|
|
60
60
|
/**
|
|
61
61
|
* The IDP alias of the attribute to set.
|
|
@@ -87,7 +87,7 @@ export declare class HardcodedRoleIdentityMapper extends pulumi.CustomResource {
|
|
|
87
87
|
*/
|
|
88
88
|
export interface HardcodedRoleIdentityMapperState {
|
|
89
89
|
extraConfig?: pulumi.Input<{
|
|
90
|
-
[key: string]:
|
|
90
|
+
[key: string]: pulumi.Input<string>;
|
|
91
91
|
}>;
|
|
92
92
|
/**
|
|
93
93
|
* The IDP alias of the attribute to set.
|
|
@@ -111,7 +111,7 @@ export interface HardcodedRoleIdentityMapperState {
|
|
|
111
111
|
*/
|
|
112
112
|
export interface HardcodedRoleIdentityMapperArgs {
|
|
113
113
|
extraConfig?: pulumi.Input<{
|
|
114
|
-
[key: string]:
|
|
114
|
+
[key: string]: pulumi.Input<string>;
|
|
115
115
|
}>;
|
|
116
116
|
/**
|
|
117
117
|
* The IDP alias of the attribute to set.
|
package/ldap/customMapper.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ export declare class CustomMapper extends pulumi.CustomResource {
|
|
|
80
80
|
* A map with key / value pairs for configuring the LDAP mapper. The supported keys depend on the protocol mapper.
|
|
81
81
|
*/
|
|
82
82
|
readonly config: pulumi.Output<{
|
|
83
|
-
[key: string]:
|
|
83
|
+
[key: string]: string;
|
|
84
84
|
} | undefined>;
|
|
85
85
|
/**
|
|
86
86
|
* The ID of the LDAP user federation provider to attach this mapper to.
|
|
@@ -119,7 +119,7 @@ export interface CustomMapperState {
|
|
|
119
119
|
* A map with key / value pairs for configuring the LDAP mapper. The supported keys depend on the protocol mapper.
|
|
120
120
|
*/
|
|
121
121
|
config?: pulumi.Input<{
|
|
122
|
-
[key: string]:
|
|
122
|
+
[key: string]: pulumi.Input<string>;
|
|
123
123
|
}>;
|
|
124
124
|
/**
|
|
125
125
|
* The ID of the LDAP user federation provider to attach this mapper to.
|
|
@@ -150,7 +150,7 @@ export interface CustomMapperArgs {
|
|
|
150
150
|
* A map with key / value pairs for configuring the LDAP mapper. The supported keys depend on the protocol mapper.
|
|
151
151
|
*/
|
|
152
152
|
config?: pulumi.Input<{
|
|
153
|
-
[key: string]:
|
|
153
|
+
[key: string]: pulumi.Input<string>;
|
|
154
154
|
}>;
|
|
155
155
|
/**
|
|
156
156
|
* The ID of the LDAP user federation provider to attach this mapper to.
|
|
@@ -96,7 +96,7 @@ export declare class GoogleIdentityProvider extends pulumi.CustomResource {
|
|
|
96
96
|
*/
|
|
97
97
|
readonly enabled: pulumi.Output<boolean | undefined>;
|
|
98
98
|
readonly extraConfig: pulumi.Output<{
|
|
99
|
-
[key: string]:
|
|
99
|
+
[key: string]: string;
|
|
100
100
|
} | undefined>;
|
|
101
101
|
/**
|
|
102
102
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
|
@@ -208,7 +208,7 @@ export interface GoogleIdentityProviderState {
|
|
|
208
208
|
*/
|
|
209
209
|
enabled?: pulumi.Input<boolean>;
|
|
210
210
|
extraConfig?: pulumi.Input<{
|
|
211
|
-
[key: string]:
|
|
211
|
+
[key: string]: pulumi.Input<string>;
|
|
212
212
|
}>;
|
|
213
213
|
/**
|
|
214
214
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
|
@@ -304,7 +304,7 @@ export interface GoogleIdentityProviderArgs {
|
|
|
304
304
|
*/
|
|
305
305
|
enabled?: pulumi.Input<boolean>;
|
|
306
306
|
extraConfig?: pulumi.Input<{
|
|
307
|
-
[key: string]:
|
|
307
|
+
[key: string]: pulumi.Input<string>;
|
|
308
308
|
}>;
|
|
309
309
|
/**
|
|
310
310
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
|
@@ -104,7 +104,7 @@ export declare class IdentityProvider extends pulumi.CustomResource {
|
|
|
104
104
|
*/
|
|
105
105
|
readonly enabled: pulumi.Output<boolean | undefined>;
|
|
106
106
|
readonly extraConfig: pulumi.Output<{
|
|
107
|
-
[key: string]:
|
|
107
|
+
[key: string]: string;
|
|
108
108
|
} | undefined>;
|
|
109
109
|
/**
|
|
110
110
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
|
@@ -244,7 +244,7 @@ export interface IdentityProviderState {
|
|
|
244
244
|
*/
|
|
245
245
|
enabled?: pulumi.Input<boolean>;
|
|
246
246
|
extraConfig?: pulumi.Input<{
|
|
247
|
-
[key: string]:
|
|
247
|
+
[key: string]: pulumi.Input<string>;
|
|
248
248
|
}>;
|
|
249
249
|
/**
|
|
250
250
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
|
@@ -376,7 +376,7 @@ export interface IdentityProviderArgs {
|
|
|
376
376
|
*/
|
|
377
377
|
enabled?: pulumi.Input<boolean>;
|
|
378
378
|
extraConfig?: pulumi.Input<{
|
|
379
|
-
[key: string]:
|
|
379
|
+
[key: string]: pulumi.Input<string>;
|
|
380
380
|
}>;
|
|
381
381
|
/**
|
|
382
382
|
* The authentication flow to use when users log in for the first time through this identity provider. Defaults to `first broker login`.
|
package/openid/client.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
113
113
|
readonly enabled: pulumi.Output<boolean | undefined>;
|
|
114
114
|
readonly excludeSessionStateFromAuthResponse: pulumi.Output<boolean>;
|
|
115
115
|
readonly extraConfig: pulumi.Output<{
|
|
116
|
-
[key: string]:
|
|
116
|
+
[key: string]: string;
|
|
117
117
|
} | undefined>;
|
|
118
118
|
readonly frontchannelLogoutEnabled: pulumi.Output<boolean>;
|
|
119
119
|
readonly frontchannelLogoutUrl: pulumi.Output<string | undefined>;
|
|
@@ -174,7 +174,7 @@ export interface ClientState {
|
|
|
174
174
|
enabled?: pulumi.Input<boolean>;
|
|
175
175
|
excludeSessionStateFromAuthResponse?: pulumi.Input<boolean>;
|
|
176
176
|
extraConfig?: pulumi.Input<{
|
|
177
|
-
[key: string]:
|
|
177
|
+
[key: string]: pulumi.Input<string>;
|
|
178
178
|
}>;
|
|
179
179
|
frontchannelLogoutEnabled?: pulumi.Input<boolean>;
|
|
180
180
|
frontchannelLogoutUrl?: pulumi.Input<string>;
|
|
@@ -227,7 +227,7 @@ export interface ClientArgs {
|
|
|
227
227
|
enabled?: pulumi.Input<boolean>;
|
|
228
228
|
excludeSessionStateFromAuthResponse?: pulumi.Input<boolean>;
|
|
229
229
|
extraConfig?: pulumi.Input<{
|
|
230
|
-
[key: string]:
|
|
230
|
+
[key: string]: pulumi.Input<string>;
|
|
231
231
|
}>;
|
|
232
232
|
frontchannelLogoutEnabled?: pulumi.Input<boolean>;
|
|
233
233
|
frontchannelLogoutUrl?: pulumi.Input<string>;
|
|
@@ -16,7 +16,7 @@ export declare class ClientAuthorizationResource extends pulumi.CustomResource {
|
|
|
16
16
|
*/
|
|
17
17
|
static isInstance(obj: any): obj is ClientAuthorizationResource;
|
|
18
18
|
readonly attributes: pulumi.Output<{
|
|
19
|
-
[key: string]:
|
|
19
|
+
[key: string]: string;
|
|
20
20
|
} | undefined>;
|
|
21
21
|
readonly displayName: pulumi.Output<string | undefined>;
|
|
22
22
|
readonly iconUri: pulumi.Output<string | undefined>;
|
|
@@ -41,7 +41,7 @@ export declare class ClientAuthorizationResource extends pulumi.CustomResource {
|
|
|
41
41
|
*/
|
|
42
42
|
export interface ClientAuthorizationResourceState {
|
|
43
43
|
attributes?: pulumi.Input<{
|
|
44
|
-
[key: string]:
|
|
44
|
+
[key: string]: pulumi.Input<string>;
|
|
45
45
|
}>;
|
|
46
46
|
displayName?: pulumi.Input<string>;
|
|
47
47
|
iconUri?: pulumi.Input<string>;
|
|
@@ -58,7 +58,7 @@ export interface ClientAuthorizationResourceState {
|
|
|
58
58
|
*/
|
|
59
59
|
export interface ClientAuthorizationResourceArgs {
|
|
60
60
|
attributes?: pulumi.Input<{
|
|
61
|
-
[key: string]:
|
|
61
|
+
[key: string]: pulumi.Input<string>;
|
|
62
62
|
}>;
|
|
63
63
|
displayName?: pulumi.Input<string>;
|
|
64
64
|
iconUri?: pulumi.Input<string>;
|
package/openid/getClient.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ export interface GetClientArgs {
|
|
|
43
43
|
consentScreenText?: string;
|
|
44
44
|
displayOnConsentScreen?: boolean;
|
|
45
45
|
extraConfig?: {
|
|
46
|
-
[key: string]:
|
|
46
|
+
[key: string]: string;
|
|
47
47
|
};
|
|
48
48
|
oauth2DeviceAuthorizationGrantEnabled?: boolean;
|
|
49
49
|
oauth2DeviceCodeLifespan?: string;
|
|
@@ -78,7 +78,7 @@ export interface GetClientResult {
|
|
|
78
78
|
readonly enabled: boolean;
|
|
79
79
|
readonly excludeSessionStateFromAuthResponse: boolean;
|
|
80
80
|
readonly extraConfig: {
|
|
81
|
-
[key: string]:
|
|
81
|
+
[key: string]: string;
|
|
82
82
|
};
|
|
83
83
|
readonly frontchannelLogoutEnabled: boolean;
|
|
84
84
|
readonly frontchannelLogoutUrl: string;
|
|
@@ -149,7 +149,7 @@ export interface GetClientOutputArgs {
|
|
|
149
149
|
consentScreenText?: pulumi.Input<string>;
|
|
150
150
|
displayOnConsentScreen?: pulumi.Input<boolean>;
|
|
151
151
|
extraConfig?: pulumi.Input<{
|
|
152
|
-
[key: string]:
|
|
152
|
+
[key: string]: pulumi.Input<string>;
|
|
153
153
|
}>;
|
|
154
154
|
oauth2DeviceAuthorizationGrantEnabled?: pulumi.Input<boolean>;
|
|
155
155
|
oauth2DeviceCodeLifespan?: pulumi.Input<string>;
|
package/openid/getClient.js
CHANGED
|
@@ -88,7 +88,17 @@ exports.getClient = getClient;
|
|
|
88
88
|
* See the docs for the `keycloak.openid.Client` resource for details on the exported attributes.
|
|
89
89
|
*/
|
|
90
90
|
function getClientOutput(args, opts) {
|
|
91
|
-
|
|
91
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
92
|
+
return pulumi.runtime.invokeOutput("keycloak:openid/getClient:getClient", {
|
|
93
|
+
"clientId": args.clientId,
|
|
94
|
+
"consentScreenText": args.consentScreenText,
|
|
95
|
+
"displayOnConsentScreen": args.displayOnConsentScreen,
|
|
96
|
+
"extraConfig": args.extraConfig,
|
|
97
|
+
"oauth2DeviceAuthorizationGrantEnabled": args.oauth2DeviceAuthorizationGrantEnabled,
|
|
98
|
+
"oauth2DeviceCodeLifespan": args.oauth2DeviceCodeLifespan,
|
|
99
|
+
"oauth2DevicePollingInterval": args.oauth2DevicePollingInterval,
|
|
100
|
+
"realmId": args.realmId,
|
|
101
|
+
}, opts);
|
|
92
102
|
}
|
|
93
103
|
exports.getClientOutput = getClientOutput;
|
|
94
104
|
//# sourceMappingURL=getClient.js.map
|
package/openid/getClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../../openid/getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../../openid/getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qCAAqC,EAAE;QAChE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,uCAAuC,EAAE,IAAI,CAAC,qCAAqC;QACnF,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC;AAsED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qCAAqC,EAAE;QACtE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,uCAAuC,EAAE,IAAI,CAAC,qCAAqC;QACnF,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC"}
|
|
@@ -115,7 +115,12 @@ exports.getClientAuthorizationPolicy = getClientAuthorizationPolicy;
|
|
|
115
115
|
* ```
|
|
116
116
|
*/
|
|
117
117
|
function getClientAuthorizationPolicyOutput(args, opts) {
|
|
118
|
-
|
|
118
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
119
|
+
return pulumi.runtime.invokeOutput("keycloak:openid/getClientAuthorizationPolicy:getClientAuthorizationPolicy", {
|
|
120
|
+
"name": args.name,
|
|
121
|
+
"realmId": args.realmId,
|
|
122
|
+
"resourceServerId": args.resourceServerId,
|
|
123
|
+
}, opts);
|
|
119
124
|
}
|
|
120
125
|
exports.getClientAuthorizationPolicyOutput = getClientAuthorizationPolicyOutput;
|
|
121
126
|
//# sourceMappingURL=getClientAuthorizationPolicy.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClientAuthorizationPolicy.js","sourceRoot":"","sources":["../../openid/getClientAuthorizationPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClientAuthorizationPolicy.js","sourceRoot":"","sources":["../../openid/getClientAuthorizationPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oEAOC;AA4DD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2EAA2E,EAAE;QAC5G,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC"}
|
package/openid/getClientScope.js
CHANGED
|
@@ -58,7 +58,11 @@ exports.getClientScope = getClientScope;
|
|
|
58
58
|
* ```
|
|
59
59
|
*/
|
|
60
60
|
function getClientScopeOutput(args, opts) {
|
|
61
|
-
|
|
61
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
62
|
+
return pulumi.runtime.invokeOutput("keycloak:openid/getClientScope:getClientScope", {
|
|
63
|
+
"name": args.name,
|
|
64
|
+
"realmId": args.realmId,
|
|
65
|
+
}, opts);
|
|
62
66
|
}
|
|
63
67
|
exports.getClientScopeOutput = getClientScopeOutput;
|
|
64
68
|
//# sourceMappingURL=getClientScope.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClientScope.js","sourceRoot":"","sources":["../../openid/getClientScope.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClientScope.js","sourceRoot":"","sources":["../../openid/getClientScope.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA+BD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,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,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC"}
|
|
@@ -94,7 +94,11 @@ exports.getClientServiceAccountUser = getClientServiceAccountUser;
|
|
|
94
94
|
* ```
|
|
95
95
|
*/
|
|
96
96
|
function getClientServiceAccountUserOutput(args, opts) {
|
|
97
|
-
|
|
97
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
98
|
+
return pulumi.runtime.invokeOutput("keycloak:openid/getClientServiceAccountUser:getClientServiceAccountUser", {
|
|
99
|
+
"clientId": args.clientId,
|
|
100
|
+
"realmId": args.realmId,
|
|
101
|
+
}, opts);
|
|
98
102
|
}
|
|
99
103
|
exports.getClientServiceAccountUserOutput = getClientServiceAccountUserOutput;
|
|
100
104
|
//# sourceMappingURL=getClientServiceAccountUser.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClientServiceAccountUser.js","sourceRoot":"","sources":["../../openid/getClientServiceAccountUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClientServiceAccountUser.js","sourceRoot":"","sources":["../../openid/getClientServiceAccountUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yEAAyE,EAAE;QACpG,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC;AAoCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yEAAyE,EAAE;QAC1G,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8EAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/keycloak",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.4",
|
|
4
4
|
"description": "A Pulumi package for creating and managing keycloak cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "keycloak",
|
|
26
|
-
"version": "5.3.
|
|
26
|
+
"version": "5.3.4"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/realm.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare class Realm extends pulumi.CustomResource {
|
|
|
27
27
|
readonly actionTokenGeneratedByUserLifespan: pulumi.Output<string>;
|
|
28
28
|
readonly adminTheme: pulumi.Output<string | undefined>;
|
|
29
29
|
readonly attributes: pulumi.Output<{
|
|
30
|
-
[key: string]:
|
|
30
|
+
[key: string]: string;
|
|
31
31
|
} | undefined>;
|
|
32
32
|
/**
|
|
33
33
|
* Which flow should be used for BrowserFlow
|
|
@@ -124,7 +124,7 @@ export interface RealmState {
|
|
|
124
124
|
actionTokenGeneratedByUserLifespan?: pulumi.Input<string>;
|
|
125
125
|
adminTheme?: pulumi.Input<string>;
|
|
126
126
|
attributes?: pulumi.Input<{
|
|
127
|
-
[key: string]:
|
|
127
|
+
[key: string]: pulumi.Input<string>;
|
|
128
128
|
}>;
|
|
129
129
|
/**
|
|
130
130
|
* Which flow should be used for BrowserFlow
|
|
@@ -213,7 +213,7 @@ export interface RealmArgs {
|
|
|
213
213
|
actionTokenGeneratedByUserLifespan?: pulumi.Input<string>;
|
|
214
214
|
adminTheme?: pulumi.Input<string>;
|
|
215
215
|
attributes?: pulumi.Input<{
|
|
216
|
-
[key: string]:
|
|
216
|
+
[key: string]: pulumi.Input<string>;
|
|
217
217
|
}>;
|
|
218
218
|
/**
|
|
219
219
|
* Which flow should be used for BrowserFlow
|
package/realmUserProfile.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import * as outputs from "./types/output";
|
|
|
22
22
|
* const realm = new keycloak.Realm("realm", {
|
|
23
23
|
* realm: "my-realm",
|
|
24
24
|
* attributes: {
|
|
25
|
-
* userProfileEnabled: true,
|
|
25
|
+
* userProfileEnabled: "true",
|
|
26
26
|
* },
|
|
27
27
|
* });
|
|
28
28
|
* const userprofile = new keycloak.RealmUserProfile("userprofile", {
|
package/realmUserProfile.js
CHANGED
|
@@ -26,7 +26,7 @@ const utilities = require("./utilities");
|
|
|
26
26
|
* const realm = new keycloak.Realm("realm", {
|
|
27
27
|
* realm: "my-realm",
|
|
28
28
|
* attributes: {
|
|
29
|
-
* userProfileEnabled: true,
|
|
29
|
+
* userProfileEnabled: "true",
|
|
30
30
|
* },
|
|
31
31
|
* });
|
|
32
32
|
* const userprofile = new keycloak.RealmUserProfile("userprofile", {
|
package/role.d.ts
CHANGED
|
@@ -142,7 +142,7 @@ export declare class Role extends pulumi.CustomResource {
|
|
|
142
142
|
*/
|
|
143
143
|
static isInstance(obj: any): obj is Role;
|
|
144
144
|
readonly attributes: pulumi.Output<{
|
|
145
|
-
[key: string]:
|
|
145
|
+
[key: string]: string;
|
|
146
146
|
} | undefined>;
|
|
147
147
|
readonly clientId: pulumi.Output<string | undefined>;
|
|
148
148
|
readonly compositeRoles: pulumi.Output<string[] | undefined>;
|
|
@@ -163,7 +163,7 @@ export declare class Role extends pulumi.CustomResource {
|
|
|
163
163
|
*/
|
|
164
164
|
export interface RoleState {
|
|
165
165
|
attributes?: pulumi.Input<{
|
|
166
|
-
[key: string]:
|
|
166
|
+
[key: string]: pulumi.Input<string>;
|
|
167
167
|
}>;
|
|
168
168
|
clientId?: pulumi.Input<string>;
|
|
169
169
|
compositeRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -176,7 +176,7 @@ export interface RoleState {
|
|
|
176
176
|
*/
|
|
177
177
|
export interface RoleArgs {
|
|
178
178
|
attributes?: pulumi.Input<{
|
|
179
|
-
[key: string]:
|
|
179
|
+
[key: string]: pulumi.Input<string>;
|
|
180
180
|
}>;
|
|
181
181
|
clientId?: pulumi.Input<string>;
|
|
182
182
|
compositeRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
package/saml/client.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
46
46
|
readonly encryptionCertificate: pulumi.Output<string>;
|
|
47
47
|
readonly encryptionCertificateSha1: pulumi.Output<string>;
|
|
48
48
|
readonly extraConfig: pulumi.Output<{
|
|
49
|
-
[key: string]:
|
|
49
|
+
[key: string]: string;
|
|
50
50
|
} | undefined>;
|
|
51
51
|
readonly forceNameIdFormat: pulumi.Output<boolean | undefined>;
|
|
52
52
|
readonly forcePostBinding: pulumi.Output<boolean | undefined>;
|
|
@@ -98,7 +98,7 @@ export interface ClientState {
|
|
|
98
98
|
encryptionCertificate?: pulumi.Input<string>;
|
|
99
99
|
encryptionCertificateSha1?: pulumi.Input<string>;
|
|
100
100
|
extraConfig?: pulumi.Input<{
|
|
101
|
-
[key: string]:
|
|
101
|
+
[key: string]: pulumi.Input<string>;
|
|
102
102
|
}>;
|
|
103
103
|
forceNameIdFormat?: pulumi.Input<boolean>;
|
|
104
104
|
forcePostBinding?: pulumi.Input<boolean>;
|
|
@@ -141,7 +141,7 @@ export interface ClientArgs {
|
|
|
141
141
|
encryptAssertions?: pulumi.Input<boolean>;
|
|
142
142
|
encryptionCertificate?: pulumi.Input<string>;
|
|
143
143
|
extraConfig?: pulumi.Input<{
|
|
144
|
-
[key: string]:
|
|
144
|
+
[key: string]: pulumi.Input<string>;
|
|
145
145
|
}>;
|
|
146
146
|
forceNameIdFormat?: pulumi.Input<boolean>;
|
|
147
147
|
forcePostBinding?: pulumi.Input<boolean>;
|
package/saml/getClient.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export interface GetClientResult {
|
|
|
52
52
|
readonly encryptionCertificate: string;
|
|
53
53
|
readonly encryptionCertificateSha1: string;
|
|
54
54
|
readonly extraConfig: {
|
|
55
|
-
[key: string]:
|
|
55
|
+
[key: string]: string;
|
|
56
56
|
};
|
|
57
57
|
readonly forceNameIdFormat: boolean;
|
|
58
58
|
readonly forcePostBinding: boolean;
|
package/saml/getClient.js
CHANGED
|
@@ -56,7 +56,11 @@ exports.getClient = getClient;
|
|
|
56
56
|
* ```
|
|
57
57
|
*/
|
|
58
58
|
function getClientOutput(args, opts) {
|
|
59
|
-
|
|
59
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
60
|
+
return pulumi.runtime.invokeOutput("keycloak:saml/getClient:getClient", {
|
|
61
|
+
"clientId": args.clientId,
|
|
62
|
+
"realmId": args.realmId,
|
|
63
|
+
}, opts);
|
|
60
64
|
}
|
|
61
65
|
exports.getClientOutput = getClientOutput;
|
|
62
66
|
//# sourceMappingURL=getClient.js.map
|
package/saml/getClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../../saml/getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../../saml/getClient.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8BAMC;AA+DD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mCAAmC,EAAE;QACpE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC"}
|
|
@@ -21,7 +21,12 @@ exports.getClientInstallationProvider = getClientInstallationProvider;
|
|
|
21
21
|
* This data source can be used to retrieve Installation Provider of a SAML Client.
|
|
22
22
|
*/
|
|
23
23
|
function getClientInstallationProviderOutput(args, opts) {
|
|
24
|
-
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invokeOutput("keycloak:saml/getClientInstallationProvider:getClientInstallationProvider", {
|
|
26
|
+
"clientId": args.clientId,
|
|
27
|
+
"providerId": args.providerId,
|
|
28
|
+
"realmId": args.realmId,
|
|
29
|
+
}, opts);
|
|
25
30
|
}
|
|
26
31
|
exports.getClientInstallationProviderOutput = getClientInstallationProviderOutput;
|
|
27
32
|
//# sourceMappingURL=getClientInstallationProvider.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClientInstallationProvider.js","sourceRoot":"","sources":["../../saml/getClientInstallationProvider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getClientInstallationProvider.js","sourceRoot":"","sources":["../../saml/getClientInstallationProvider.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sEAOC;AAoCD;;GAEG;AACH,SAAgB,mCAAmC,CAAC,IAA6C,EAAE,IAA2B;IAC1H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2EAA2E,EAAE;QAC5G,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kFAOC"}
|
|
@@ -124,7 +124,7 @@ export declare class IdentityProvider extends pulumi.CustomResource {
|
|
|
124
124
|
*/
|
|
125
125
|
readonly entityId: pulumi.Output<string>;
|
|
126
126
|
readonly extraConfig: pulumi.Output<{
|
|
127
|
-
[key: string]:
|
|
127
|
+
[key: string]: string;
|
|
128
128
|
} | undefined>;
|
|
129
129
|
/**
|
|
130
130
|
* Alias of authentication flow, which is triggered after first login with this identity provider. Term 'First Login' means
|
|
@@ -293,7 +293,7 @@ export interface IdentityProviderState {
|
|
|
293
293
|
*/
|
|
294
294
|
entityId?: pulumi.Input<string>;
|
|
295
295
|
extraConfig?: pulumi.Input<{
|
|
296
|
-
[key: string]:
|
|
296
|
+
[key: string]: pulumi.Input<string>;
|
|
297
297
|
}>;
|
|
298
298
|
/**
|
|
299
299
|
* Alias of authentication flow, which is triggered after first login with this identity provider. Term 'First Login' means
|
|
@@ -454,7 +454,7 @@ export interface IdentityProviderArgs {
|
|
|
454
454
|
*/
|
|
455
455
|
entityId: pulumi.Input<string>;
|
|
456
456
|
extraConfig?: pulumi.Input<{
|
|
457
|
-
[key: string]:
|
|
457
|
+
[key: string]: pulumi.Input<string>;
|
|
458
458
|
}>;
|
|
459
459
|
/**
|
|
460
460
|
* Alias of authentication flow, which is triggered after first login with this identity provider. Term 'First Login' means
|
package/types/output.d.ts
CHANGED
package/user.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export declare class User extends pulumi.CustomResource {
|
|
|
81
81
|
*/
|
|
82
82
|
static isInstance(obj: any): obj is User;
|
|
83
83
|
readonly attributes: pulumi.Output<{
|
|
84
|
-
[key: string]:
|
|
84
|
+
[key: string]: string;
|
|
85
85
|
} | undefined>;
|
|
86
86
|
readonly email: pulumi.Output<string | undefined>;
|
|
87
87
|
readonly emailVerified: pulumi.Output<boolean | undefined>;
|
|
@@ -107,7 +107,7 @@ export declare class User extends pulumi.CustomResource {
|
|
|
107
107
|
*/
|
|
108
108
|
export interface UserState {
|
|
109
109
|
attributes?: pulumi.Input<{
|
|
110
|
-
[key: string]:
|
|
110
|
+
[key: string]: pulumi.Input<string>;
|
|
111
111
|
}>;
|
|
112
112
|
email?: pulumi.Input<string>;
|
|
113
113
|
emailVerified?: pulumi.Input<boolean>;
|
|
@@ -125,7 +125,7 @@ export interface UserState {
|
|
|
125
125
|
*/
|
|
126
126
|
export interface UserArgs {
|
|
127
127
|
attributes?: pulumi.Input<{
|
|
128
|
-
[key: string]:
|
|
128
|
+
[key: string]: pulumi.Input<string>;
|
|
129
129
|
}>;
|
|
130
130
|
email?: pulumi.Input<string>;
|
|
131
131
|
emailVerified?: pulumi.Input<boolean>;
|
|
@@ -72,7 +72,7 @@ export declare class UserTemplateImporterIdentityProviderMapper extends pulumi.C
|
|
|
72
72
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
73
73
|
*/
|
|
74
74
|
readonly extraConfig: pulumi.Output<{
|
|
75
|
-
[key: string]:
|
|
75
|
+
[key: string]: string;
|
|
76
76
|
} | undefined>;
|
|
77
77
|
/**
|
|
78
78
|
* The alias of the associated identity provider.
|
|
@@ -107,7 +107,7 @@ export interface UserTemplateImporterIdentityProviderMapperState {
|
|
|
107
107
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
108
108
|
*/
|
|
109
109
|
extraConfig?: pulumi.Input<{
|
|
110
|
-
[key: string]:
|
|
110
|
+
[key: string]: pulumi.Input<string>;
|
|
111
111
|
}>;
|
|
112
112
|
/**
|
|
113
113
|
* The alias of the associated identity provider.
|
|
@@ -134,7 +134,7 @@ export interface UserTemplateImporterIdentityProviderMapperArgs {
|
|
|
134
134
|
* Key/value attributes to add to the identity provider mapper model that is persisted to Keycloak. This can be used to extend the base model with new Keycloak features.
|
|
135
135
|
*/
|
|
136
136
|
extraConfig?: pulumi.Input<{
|
|
137
|
-
[key: string]:
|
|
137
|
+
[key: string]: pulumi.Input<string>;
|
|
138
138
|
}>;
|
|
139
139
|
/**
|
|
140
140
|
* The alias of the associated identity provider.
|