@pulumi/confluentcloud 1.2.1 → 1.3.0-alpha.1663164003
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/getIdentityPool.d.ts +86 -0
- package/getIdentityPool.js +51 -0
- package/getIdentityPool.js.map +1 -0
- package/getIdentityProvider.d.ts +75 -0
- package/getIdentityProvider.js +45 -0
- package/getIdentityProvider.js.map +1 -0
- package/getKsqlCluster.d.ts +102 -0
- package/getKsqlCluster.js +53 -0
- package/getKsqlCluster.js.map +1 -0
- package/getPrivateLinkAccess.d.ts +4 -0
- package/getPrivateLinkAccess.js.map +1 -1
- package/identityPool.d.ts +165 -0
- package/identityPool.js +139 -0
- package/identityPool.js.map +1 -0
- package/identityProvider.d.ts +133 -0
- package/identityProvider.js +116 -0
- package/identityProvider.js.map +1 -0
- package/index.d.ts +18 -0
- package/index.js +25 -1
- package/index.js.map +1 -1
- package/ksqlCluster.d.ts +145 -0
- package/ksqlCluster.js +97 -0
- package/ksqlCluster.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/privateLinkAccess.d.ts +3 -0
- package/privateLinkAccess.js +2 -0
- package/privateLinkAccess.js.map +1 -1
- package/types/input.d.ts +109 -37
- package/types/output.d.ts +74 -2
package/identityPool.js
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.IdentityPool = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.IdentityPool` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.IdentityPool` provides an Identity Pool resource that enables creating, editing, and deleting identity pools on Confluent Cloud.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
* ### Example Identity Pool to be used with Azure AD
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
22
|
+
*
|
|
23
|
+
* const azure = new confluentcloud.IdentityProvider("azure", {
|
|
24
|
+
* displayName: "My OIDC Provider: Azure AD",
|
|
25
|
+
* description: "My description",
|
|
26
|
+
* issuer: "https://login.microsoftonline.com/{tenant_id}/v2.0",
|
|
27
|
+
* jwksUri: "https://login.microsoftonline.com/common/discovery/v2.0/keys",
|
|
28
|
+
* });
|
|
29
|
+
* const example = new confluentcloud.IdentityPool("example", {
|
|
30
|
+
* identityProvider: {
|
|
31
|
+
* id: azure.id,
|
|
32
|
+
* },
|
|
33
|
+
* displayName: "My Identity Pool",
|
|
34
|
+
* description: "Prod Access to Kafka clusters to Release Engineering",
|
|
35
|
+
* identityClaim: "claims.sub",
|
|
36
|
+
* filter: "claims.aud==\"confluent\" && claims.group!=\"invalid_group\"",
|
|
37
|
+
* });
|
|
38
|
+
* ```
|
|
39
|
+
* ### Example Identity Pool to be used with Okta
|
|
40
|
+
*
|
|
41
|
+
* ```typescript
|
|
42
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
44
|
+
*
|
|
45
|
+
* const okta = new confluentcloud.IdentityProvider("okta", {
|
|
46
|
+
* displayName: "My OIDC Provider: Okta",
|
|
47
|
+
* description: "My description",
|
|
48
|
+
* issuer: "https://mycompany.okta.com/oauth2/default",
|
|
49
|
+
* jwksUri: "https://mycompany.okta.com/oauth2/default/v1/keys",
|
|
50
|
+
* });
|
|
51
|
+
* const example = new confluentcloud.IdentityPool("example", {
|
|
52
|
+
* identityProvider: {
|
|
53
|
+
* id: okta.id,
|
|
54
|
+
* },
|
|
55
|
+
* displayName: "My Identity Pool",
|
|
56
|
+
* description: "Prod Access to Kafka clusters to Release Engineering",
|
|
57
|
+
* identityClaim: "claims.sub",
|
|
58
|
+
* filter: "claims.aud==\"confluent\" && claims.group!=\"invalid_group\"",
|
|
59
|
+
* });
|
|
60
|
+
* ```
|
|
61
|
+
* ## External Documentation
|
|
62
|
+
*
|
|
63
|
+
* * [Use identity pools with your OAuth provider](https://docs.confluent.io/cloud/current/access-management/authenticate/oauth/identity-pools.html).
|
|
64
|
+
*
|
|
65
|
+
* ## Import
|
|
66
|
+
*
|
|
67
|
+
* You can import an Identity Pool by using Identity Provider ID and Identity Pool ID, in the format `<Identity Provider ID>/<Identity Pool ID>`. The following example shows how to import an Identity Pool$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
68
|
+
*
|
|
69
|
+
* ```sh
|
|
70
|
+
* $ pulumi import confluentcloud:index/identityPool:IdentityPool example op-abc123/pool-xyz456
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
74
|
+
*/
|
|
75
|
+
class IdentityPool extends pulumi.CustomResource {
|
|
76
|
+
constructor(name, argsOrState, opts) {
|
|
77
|
+
let resourceInputs = {};
|
|
78
|
+
opts = opts || {};
|
|
79
|
+
if (opts.id) {
|
|
80
|
+
const state = argsOrState;
|
|
81
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
82
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
83
|
+
resourceInputs["filter"] = state ? state.filter : undefined;
|
|
84
|
+
resourceInputs["identityClaim"] = state ? state.identityClaim : undefined;
|
|
85
|
+
resourceInputs["identityProvider"] = state ? state.identityProvider : undefined;
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
const args = argsOrState;
|
|
89
|
+
if ((!args || args.description === undefined) && !opts.urn) {
|
|
90
|
+
throw new Error("Missing required property 'description'");
|
|
91
|
+
}
|
|
92
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
93
|
+
throw new Error("Missing required property 'displayName'");
|
|
94
|
+
}
|
|
95
|
+
if ((!args || args.filter === undefined) && !opts.urn) {
|
|
96
|
+
throw new Error("Missing required property 'filter'");
|
|
97
|
+
}
|
|
98
|
+
if ((!args || args.identityClaim === undefined) && !opts.urn) {
|
|
99
|
+
throw new Error("Missing required property 'identityClaim'");
|
|
100
|
+
}
|
|
101
|
+
if ((!args || args.identityProvider === undefined) && !opts.urn) {
|
|
102
|
+
throw new Error("Missing required property 'identityProvider'");
|
|
103
|
+
}
|
|
104
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
105
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
106
|
+
resourceInputs["filter"] = args ? args.filter : undefined;
|
|
107
|
+
resourceInputs["identityClaim"] = args ? args.identityClaim : undefined;
|
|
108
|
+
resourceInputs["identityProvider"] = args ? args.identityProvider : undefined;
|
|
109
|
+
}
|
|
110
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
111
|
+
super(IdentityPool.__pulumiType, name, resourceInputs, opts);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Get an existing IdentityPool resource's state with the given name, ID, and optional extra
|
|
115
|
+
* properties used to qualify the lookup.
|
|
116
|
+
*
|
|
117
|
+
* @param name The _unique_ name of the resulting resource.
|
|
118
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
119
|
+
* @param state Any extra arguments used during the lookup.
|
|
120
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
121
|
+
*/
|
|
122
|
+
static get(name, id, state, opts) {
|
|
123
|
+
return new IdentityPool(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Returns true if the given object is an instance of IdentityPool. This is designed to work even
|
|
127
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
128
|
+
*/
|
|
129
|
+
static isInstance(obj) {
|
|
130
|
+
if (obj === undefined || obj === null) {
|
|
131
|
+
return false;
|
|
132
|
+
}
|
|
133
|
+
return obj['__pulumiType'] === IdentityPool.__pulumiType;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
exports.IdentityPool = IdentityPool;
|
|
137
|
+
/** @internal */
|
|
138
|
+
IdentityPool.__pulumiType = 'confluentcloud:index/identityPool:IdentityPool';
|
|
139
|
+
//# sourceMappingURL=identityPool.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identityPool.js","sourceRoot":"","sources":["../identityPool.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
4
|
+
*
|
|
5
|
+
* > **Note:** `confluentcloud.IdentityProvider` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
6
|
+
* **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
7
|
+
*
|
|
8
|
+
* `confluentcloud.IdentityProvider` provides an Identity Provider resource that enables creating, editing, and deleting identity providers on Confluent Cloud.
|
|
9
|
+
*
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
* ### Example Identity Provider: Azure AD
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as confluent from "@pulumi/confluent";
|
|
16
|
+
*
|
|
17
|
+
* const azure = new confluent.IdentityProvider("azure", {
|
|
18
|
+
* description: "My description",
|
|
19
|
+
* displayName: "My OIDC Provider: Azure AD",
|
|
20
|
+
* issuer: "https://login.microsoftonline.com/{tenant_id}/v2.0",
|
|
21
|
+
* jwksUri: "https://login.microsoftonline.com/common/discovery/v2.0/keys",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
* ### Example Identity Provider: Okta
|
|
25
|
+
*
|
|
26
|
+
* ```typescript
|
|
27
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
28
|
+
* import * as confluent from "@pulumi/confluent";
|
|
29
|
+
*
|
|
30
|
+
* const okta = new confluent.IdentityProvider("okta", {
|
|
31
|
+
* description: "My description",
|
|
32
|
+
* displayName: "My OIDC Provider: Okta",
|
|
33
|
+
* issuer: "https://mycompany.okta.com/oauth2/default",
|
|
34
|
+
* jwksUri: "https://mycompany.okta.com/oauth2/default/v1/keys",
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
* ## External Documentation
|
|
38
|
+
*
|
|
39
|
+
* * [Authenticating with OAuth](https://docs.confluent.io/cloud/current/access-management/authenticate/oauth/overview.html).
|
|
40
|
+
*
|
|
41
|
+
* ## Import
|
|
42
|
+
*
|
|
43
|
+
* You can import an Identity Provider by using Identity Provider ID, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
44
|
+
*
|
|
45
|
+
* ```sh
|
|
46
|
+
* $ pulumi import confluentcloud:index/identityProvider:IdentityProvider example op-abc123
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
50
|
+
*/
|
|
51
|
+
export declare class IdentityProvider extends pulumi.CustomResource {
|
|
52
|
+
/**
|
|
53
|
+
* Get an existing IdentityProvider resource's state with the given name, ID, and optional extra
|
|
54
|
+
* properties used to qualify the lookup.
|
|
55
|
+
*
|
|
56
|
+
* @param name The _unique_ name of the resulting resource.
|
|
57
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
58
|
+
* @param state Any extra arguments used during the lookup.
|
|
59
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
60
|
+
*/
|
|
61
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: IdentityProviderState, opts?: pulumi.CustomResourceOptions): IdentityProvider;
|
|
62
|
+
/**
|
|
63
|
+
* Returns true if the given object is an instance of IdentityProvider. This is designed to work even
|
|
64
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
65
|
+
*/
|
|
66
|
+
static isInstance(obj: any): obj is IdentityProvider;
|
|
67
|
+
/**
|
|
68
|
+
* A description for the Identity Provider.
|
|
69
|
+
*/
|
|
70
|
+
readonly description: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* A human-readable name for the Identity Provider.
|
|
73
|
+
*/
|
|
74
|
+
readonly displayName: pulumi.Output<string>;
|
|
75
|
+
/**
|
|
76
|
+
* A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
|
|
77
|
+
*/
|
|
78
|
+
readonly issuer: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* A publicly reachable JSON Web Key Set (JWKS) URI for the Identity Provider. A JSON Web Key Set (JWKS) provides a set of keys containing the public keys used to verify any JSON Web Token (JWT) issued by your OAuth 2.0 identity provider.
|
|
81
|
+
*/
|
|
82
|
+
readonly jwksUri: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Create a IdentityProvider resource with the given unique name, arguments, and options.
|
|
85
|
+
*
|
|
86
|
+
* @param name The _unique_ name of the resource.
|
|
87
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
88
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
89
|
+
*/
|
|
90
|
+
constructor(name: string, args: IdentityProviderArgs, opts?: pulumi.CustomResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Input properties used for looking up and filtering IdentityProvider resources.
|
|
94
|
+
*/
|
|
95
|
+
export interface IdentityProviderState {
|
|
96
|
+
/**
|
|
97
|
+
* A description for the Identity Provider.
|
|
98
|
+
*/
|
|
99
|
+
description?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* A human-readable name for the Identity Provider.
|
|
102
|
+
*/
|
|
103
|
+
displayName?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
|
|
106
|
+
*/
|
|
107
|
+
issuer?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* A publicly reachable JSON Web Key Set (JWKS) URI for the Identity Provider. A JSON Web Key Set (JWKS) provides a set of keys containing the public keys used to verify any JSON Web Token (JWT) issued by your OAuth 2.0 identity provider.
|
|
110
|
+
*/
|
|
111
|
+
jwksUri?: pulumi.Input<string>;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* The set of arguments for constructing a IdentityProvider resource.
|
|
115
|
+
*/
|
|
116
|
+
export interface IdentityProviderArgs {
|
|
117
|
+
/**
|
|
118
|
+
* A description for the Identity Provider.
|
|
119
|
+
*/
|
|
120
|
+
description: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* A human-readable name for the Identity Provider.
|
|
123
|
+
*/
|
|
124
|
+
displayName: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
|
|
127
|
+
*/
|
|
128
|
+
issuer: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* A publicly reachable JSON Web Key Set (JWKS) URI for the Identity Provider. A JSON Web Key Set (JWKS) provides a set of keys containing the public keys used to verify any JSON Web Token (JWT) issued by your OAuth 2.0 identity provider.
|
|
131
|
+
*/
|
|
132
|
+
jwksUri: pulumi.Input<string>;
|
|
133
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.IdentityProvider = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* [](https://docs.confluent.io/cloud/current/api.html#section/Versioning/API-Lifecycle-Policy) [](mailto:ccloud-api-access+iam-v2-closed-preview@confluent.io?subject=Request%20to%20join%20OAuth%20API%20Closed%20Preview&body=I%E2%80%99d%20like%20to%20join%20the%20Confluent%20Cloud%20API%20Closed%20Preview%20for%20iam/v2%20to%20provide%20early%20feedback%21%20My%20Cloud%20Organization%20ID%20is%20%3Cretrieve%20from%20https%3A//confluent.cloud/settings/billing/payment%3E.)
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** `confluentcloud.IdentityProvider` resource is available in a **Limited Availability** for early adopters. Limited Availability features are introduced to gather customer feedback. This feature should be used only for evaluation and non-production testing purposes or to provide feedback to Confluent, particularly as it becomes more widely available in follow-on editions.\
|
|
12
|
+
* **Limited Availability** features are intended for evaluation use in development and testing environments only, and not for production use. The warranty, SLA, and Support Services provisions of your agreement with Confluent do not apply to Limited Availability features. Limited Availability features are considered to be a Proof of Concept as defined in the Confluent Cloud Terms of Service. Confluent may discontinue providing preview releases of the Limited Availability features at any time in Confluent’s sole discretion.
|
|
13
|
+
*
|
|
14
|
+
* `confluentcloud.IdentityProvider` provides an Identity Provider resource that enables creating, editing, and deleting identity providers on Confluent Cloud.
|
|
15
|
+
*
|
|
16
|
+
* ## Example Usage
|
|
17
|
+
* ### Example Identity Provider: Azure AD
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as confluent from "@pulumi/confluent";
|
|
22
|
+
*
|
|
23
|
+
* const azure = new confluent.IdentityProvider("azure", {
|
|
24
|
+
* description: "My description",
|
|
25
|
+
* displayName: "My OIDC Provider: Azure AD",
|
|
26
|
+
* issuer: "https://login.microsoftonline.com/{tenant_id}/v2.0",
|
|
27
|
+
* jwksUri: "https://login.microsoftonline.com/common/discovery/v2.0/keys",
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
* ### Example Identity Provider: Okta
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as confluent from "@pulumi/confluent";
|
|
35
|
+
*
|
|
36
|
+
* const okta = new confluent.IdentityProvider("okta", {
|
|
37
|
+
* description: "My description",
|
|
38
|
+
* displayName: "My OIDC Provider: Okta",
|
|
39
|
+
* issuer: "https://mycompany.okta.com/oauth2/default",
|
|
40
|
+
* jwksUri: "https://mycompany.okta.com/oauth2/default/v1/keys",
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
* ## External Documentation
|
|
44
|
+
*
|
|
45
|
+
* * [Authenticating with OAuth](https://docs.confluent.io/cloud/current/access-management/authenticate/oauth/overview.html).
|
|
46
|
+
*
|
|
47
|
+
* ## Import
|
|
48
|
+
*
|
|
49
|
+
* You can import an Identity Provider by using Identity Provider ID, for example$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
|
|
50
|
+
*
|
|
51
|
+
* ```sh
|
|
52
|
+
* $ pulumi import confluentcloud:index/identityProvider:IdentityProvider example op-abc123
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* !> **Warning:** Do not forget to delete terminal command history afterwards for security purposes.
|
|
56
|
+
*/
|
|
57
|
+
class IdentityProvider extends pulumi.CustomResource {
|
|
58
|
+
constructor(name, argsOrState, opts) {
|
|
59
|
+
let resourceInputs = {};
|
|
60
|
+
opts = opts || {};
|
|
61
|
+
if (opts.id) {
|
|
62
|
+
const state = argsOrState;
|
|
63
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
64
|
+
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
65
|
+
resourceInputs["issuer"] = state ? state.issuer : undefined;
|
|
66
|
+
resourceInputs["jwksUri"] = state ? state.jwksUri : undefined;
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
const args = argsOrState;
|
|
70
|
+
if ((!args || args.description === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'description'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'displayName'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.issuer === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'issuer'");
|
|
78
|
+
}
|
|
79
|
+
if ((!args || args.jwksUri === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'jwksUri'");
|
|
81
|
+
}
|
|
82
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
83
|
+
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
84
|
+
resourceInputs["issuer"] = args ? args.issuer : undefined;
|
|
85
|
+
resourceInputs["jwksUri"] = args ? args.jwksUri : undefined;
|
|
86
|
+
}
|
|
87
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
88
|
+
super(IdentityProvider.__pulumiType, name, resourceInputs, opts);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Get an existing IdentityProvider resource's state with the given name, ID, and optional extra
|
|
92
|
+
* properties used to qualify the lookup.
|
|
93
|
+
*
|
|
94
|
+
* @param name The _unique_ name of the resulting resource.
|
|
95
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
96
|
+
* @param state Any extra arguments used during the lookup.
|
|
97
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
98
|
+
*/
|
|
99
|
+
static get(name, id, state, opts) {
|
|
100
|
+
return new IdentityProvider(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Returns true if the given object is an instance of IdentityProvider. This is designed to work even
|
|
104
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
105
|
+
*/
|
|
106
|
+
static isInstance(obj) {
|
|
107
|
+
if (obj === undefined || obj === null) {
|
|
108
|
+
return false;
|
|
109
|
+
}
|
|
110
|
+
return obj['__pulumiType'] === IdentityProvider.__pulumiType;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
exports.IdentityProvider = IdentityProvider;
|
|
114
|
+
/** @internal */
|
|
115
|
+
IdentityProvider.__pulumiType = 'confluentcloud:index/identityProvider:IdentityProvider';
|
|
116
|
+
//# sourceMappingURL=identityProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identityProvider.js","sourceRoot":"","sources":["../identityProvider.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -10,12 +10,21 @@ export declare const Environment: typeof import("./environment").Environment;
|
|
|
10
10
|
export { GetEnvironmentArgs, GetEnvironmentResult, GetEnvironmentOutputArgs } from "./getEnvironment";
|
|
11
11
|
export declare const getEnvironment: typeof import("./getEnvironment").getEnvironment;
|
|
12
12
|
export declare const getEnvironmentOutput: typeof import("./getEnvironment").getEnvironmentOutput;
|
|
13
|
+
export { GetIdentityPoolArgs, GetIdentityPoolResult, GetIdentityPoolOutputArgs } from "./getIdentityPool";
|
|
14
|
+
export declare const getIdentityPool: typeof import("./getIdentityPool").getIdentityPool;
|
|
15
|
+
export declare const getIdentityPoolOutput: typeof import("./getIdentityPool").getIdentityPoolOutput;
|
|
16
|
+
export { GetIdentityProviderArgs, GetIdentityProviderResult, GetIdentityProviderOutputArgs } from "./getIdentityProvider";
|
|
17
|
+
export declare const getIdentityProvider: typeof import("./getIdentityProvider").getIdentityProvider;
|
|
18
|
+
export declare const getIdentityProviderOutput: typeof import("./getIdentityProvider").getIdentityProviderOutput;
|
|
13
19
|
export { GetKafkaClusterArgs, GetKafkaClusterResult, GetKafkaClusterOutputArgs } from "./getKafkaCluster";
|
|
14
20
|
export declare const getKafkaCluster: typeof import("./getKafkaCluster").getKafkaCluster;
|
|
15
21
|
export declare const getKafkaClusterOutput: typeof import("./getKafkaCluster").getKafkaClusterOutput;
|
|
16
22
|
export { GetKafkaTopicArgs, GetKafkaTopicResult, GetKafkaTopicOutputArgs } from "./getKafkaTopic";
|
|
17
23
|
export declare const getKafkaTopic: typeof import("./getKafkaTopic").getKafkaTopic;
|
|
18
24
|
export declare const getKafkaTopicOutput: typeof import("./getKafkaTopic").getKafkaTopicOutput;
|
|
25
|
+
export { GetKsqlClusterArgs, GetKsqlClusterResult, GetKsqlClusterOutputArgs } from "./getKsqlCluster";
|
|
26
|
+
export declare const getKsqlCluster: typeof import("./getKsqlCluster").getKsqlCluster;
|
|
27
|
+
export declare const getKsqlClusterOutput: typeof import("./getKsqlCluster").getKsqlClusterOutput;
|
|
19
28
|
export { GetNetworkArgs, GetNetworkResult, GetNetworkOutputArgs } from "./getNetwork";
|
|
20
29
|
export declare const getNetwork: typeof import("./getNetwork").getNetwork;
|
|
21
30
|
export declare const getNetworkOutput: typeof import("./getNetwork").getNetworkOutput;
|
|
@@ -36,6 +45,12 @@ export declare const getServiceAccountOutput: typeof import("./getServiceAccount
|
|
|
36
45
|
export { GetUserArgs, GetUserResult, GetUserOutputArgs } from "./getUser";
|
|
37
46
|
export declare const getUser: typeof import("./getUser").getUser;
|
|
38
47
|
export declare const getUserOutput: typeof import("./getUser").getUserOutput;
|
|
48
|
+
export { IdentityPoolArgs, IdentityPoolState } from "./identityPool";
|
|
49
|
+
export declare type IdentityPool = import("./identityPool").IdentityPool;
|
|
50
|
+
export declare const IdentityPool: typeof import("./identityPool").IdentityPool;
|
|
51
|
+
export { IdentityProviderArgs, IdentityProviderState } from "./identityProvider";
|
|
52
|
+
export declare type IdentityProvider = import("./identityProvider").IdentityProvider;
|
|
53
|
+
export declare const IdentityProvider: typeof import("./identityProvider").IdentityProvider;
|
|
39
54
|
export { KafkaAclArgs, KafkaAclState } from "./kafkaAcl";
|
|
40
55
|
export declare type KafkaAcl = import("./kafkaAcl").KafkaAcl;
|
|
41
56
|
export declare const KafkaAcl: typeof import("./kafkaAcl").KafkaAcl;
|
|
@@ -45,6 +60,9 @@ export declare const KafkaCluster: typeof import("./kafkaCluster").KafkaCluster;
|
|
|
45
60
|
export { KafkaTopicArgs, KafkaTopicState } from "./kafkaTopic";
|
|
46
61
|
export declare type KafkaTopic = import("./kafkaTopic").KafkaTopic;
|
|
47
62
|
export declare const KafkaTopic: typeof import("./kafkaTopic").KafkaTopic;
|
|
63
|
+
export { KsqlClusterArgs, KsqlClusterState } from "./ksqlCluster";
|
|
64
|
+
export declare type KsqlCluster = import("./ksqlCluster").KsqlCluster;
|
|
65
|
+
export declare const KsqlCluster: typeof import("./ksqlCluster").KsqlCluster;
|
|
48
66
|
export { NetworkArgs, NetworkState } from "./network";
|
|
49
67
|
export declare type Network = import("./network").Network;
|
|
50
68
|
export declare const Network: typeof import("./network").Network;
|
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.types = exports.config = exports.ServiceAccount = exports.RoleBinding = exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.Network = exports.KafkaTopic = exports.KafkaCluster = exports.KafkaAcl = exports.getUserOutput = exports.getUser = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganization = exports.getNetworkOutput = exports.getNetwork = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getEnvironmentOutput = exports.getEnvironment = exports.Environment = exports.Connector = exports.ApiKey = void 0;
|
|
5
|
+
exports.types = exports.config = exports.ServiceAccount = exports.RoleBinding = exports.Provider = exports.PrivateLinkAccess = exports.Peering = exports.Network = exports.KsqlCluster = exports.KafkaTopic = exports.KafkaCluster = exports.KafkaAcl = exports.IdentityProvider = exports.IdentityPool = exports.getUserOutput = exports.getUser = exports.getServiceAccountOutput = exports.getServiceAccount = exports.getRoleBindingOutput = exports.getRoleBinding = exports.getPrivateLinkAccessOutput = exports.getPrivateLinkAccess = exports.getPeeringOutput = exports.getPeering = exports.getOrganization = exports.getNetworkOutput = exports.getNetwork = exports.getKsqlClusterOutput = exports.getKsqlCluster = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaClusterOutput = exports.getKafkaCluster = exports.getIdentityProviderOutput = exports.getIdentityProvider = exports.getIdentityPoolOutput = exports.getIdentityPool = exports.getEnvironmentOutput = exports.getEnvironment = exports.Environment = exports.Connector = exports.ApiKey = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
exports.ApiKey = null;
|
|
@@ -10,10 +10,16 @@ exports.Connector = null;
|
|
|
10
10
|
exports.Environment = null;
|
|
11
11
|
exports.getEnvironment = null;
|
|
12
12
|
exports.getEnvironmentOutput = null;
|
|
13
|
+
exports.getIdentityPool = null;
|
|
14
|
+
exports.getIdentityPoolOutput = null;
|
|
15
|
+
exports.getIdentityProvider = null;
|
|
16
|
+
exports.getIdentityProviderOutput = null;
|
|
13
17
|
exports.getKafkaCluster = null;
|
|
14
18
|
exports.getKafkaClusterOutput = null;
|
|
15
19
|
exports.getKafkaTopic = null;
|
|
16
20
|
exports.getKafkaTopicOutput = null;
|
|
21
|
+
exports.getKsqlCluster = null;
|
|
22
|
+
exports.getKsqlClusterOutput = null;
|
|
17
23
|
exports.getNetwork = null;
|
|
18
24
|
exports.getNetworkOutput = null;
|
|
19
25
|
exports.getOrganization = null;
|
|
@@ -27,9 +33,12 @@ exports.getServiceAccount = null;
|
|
|
27
33
|
exports.getServiceAccountOutput = null;
|
|
28
34
|
exports.getUser = null;
|
|
29
35
|
exports.getUserOutput = null;
|
|
36
|
+
exports.IdentityPool = null;
|
|
37
|
+
exports.IdentityProvider = null;
|
|
30
38
|
exports.KafkaAcl = null;
|
|
31
39
|
exports.KafkaCluster = null;
|
|
32
40
|
exports.KafkaTopic = null;
|
|
41
|
+
exports.KsqlCluster = null;
|
|
33
42
|
exports.Network = null;
|
|
34
43
|
exports.Peering = null;
|
|
35
44
|
exports.PrivateLinkAccess = null;
|
|
@@ -40,8 +49,11 @@ utilities.lazyLoad(exports, ["ApiKey"], () => require("./apiKey"));
|
|
|
40
49
|
utilities.lazyLoad(exports, ["Connector"], () => require("./connector"));
|
|
41
50
|
utilities.lazyLoad(exports, ["Environment"], () => require("./environment"));
|
|
42
51
|
utilities.lazyLoad(exports, ["getEnvironment", "getEnvironmentOutput"], () => require("./getEnvironment"));
|
|
52
|
+
utilities.lazyLoad(exports, ["getIdentityPool", "getIdentityPoolOutput"], () => require("./getIdentityPool"));
|
|
53
|
+
utilities.lazyLoad(exports, ["getIdentityProvider", "getIdentityProviderOutput"], () => require("./getIdentityProvider"));
|
|
43
54
|
utilities.lazyLoad(exports, ["getKafkaCluster", "getKafkaClusterOutput"], () => require("./getKafkaCluster"));
|
|
44
55
|
utilities.lazyLoad(exports, ["getKafkaTopic", "getKafkaTopicOutput"], () => require("./getKafkaTopic"));
|
|
56
|
+
utilities.lazyLoad(exports, ["getKsqlCluster", "getKsqlClusterOutput"], () => require("./getKsqlCluster"));
|
|
45
57
|
utilities.lazyLoad(exports, ["getNetwork", "getNetworkOutput"], () => require("./getNetwork"));
|
|
46
58
|
utilities.lazyLoad(exports, ["getOrganization"], () => require("./getOrganization"));
|
|
47
59
|
utilities.lazyLoad(exports, ["getPeering", "getPeeringOutput"], () => require("./getPeering"));
|
|
@@ -49,9 +61,12 @@ utilities.lazyLoad(exports, ["getPrivateLinkAccess", "getPrivateLinkAccessOutput
|
|
|
49
61
|
utilities.lazyLoad(exports, ["getRoleBinding", "getRoleBindingOutput"], () => require("./getRoleBinding"));
|
|
50
62
|
utilities.lazyLoad(exports, ["getServiceAccount", "getServiceAccountOutput"], () => require("./getServiceAccount"));
|
|
51
63
|
utilities.lazyLoad(exports, ["getUser", "getUserOutput"], () => require("./getUser"));
|
|
64
|
+
utilities.lazyLoad(exports, ["IdentityPool"], () => require("./identityPool"));
|
|
65
|
+
utilities.lazyLoad(exports, ["IdentityProvider"], () => require("./identityProvider"));
|
|
52
66
|
utilities.lazyLoad(exports, ["KafkaAcl"], () => require("./kafkaAcl"));
|
|
53
67
|
utilities.lazyLoad(exports, ["KafkaCluster"], () => require("./kafkaCluster"));
|
|
54
68
|
utilities.lazyLoad(exports, ["KafkaTopic"], () => require("./kafkaTopic"));
|
|
69
|
+
utilities.lazyLoad(exports, ["KsqlCluster"], () => require("./ksqlCluster"));
|
|
55
70
|
utilities.lazyLoad(exports, ["Network"], () => require("./network"));
|
|
56
71
|
utilities.lazyLoad(exports, ["Peering"], () => require("./peering"));
|
|
57
72
|
utilities.lazyLoad(exports, ["PrivateLinkAccess"], () => require("./privateLinkAccess"));
|
|
@@ -73,12 +88,18 @@ const _module = {
|
|
|
73
88
|
return new exports.Connector(name, undefined, { urn });
|
|
74
89
|
case "confluentcloud:index/environment:Environment":
|
|
75
90
|
return new exports.Environment(name, undefined, { urn });
|
|
91
|
+
case "confluentcloud:index/identityPool:IdentityPool":
|
|
92
|
+
return new exports.IdentityPool(name, undefined, { urn });
|
|
93
|
+
case "confluentcloud:index/identityProvider:IdentityProvider":
|
|
94
|
+
return new exports.IdentityProvider(name, undefined, { urn });
|
|
76
95
|
case "confluentcloud:index/kafkaAcl:KafkaAcl":
|
|
77
96
|
return new exports.KafkaAcl(name, undefined, { urn });
|
|
78
97
|
case "confluentcloud:index/kafkaCluster:KafkaCluster":
|
|
79
98
|
return new exports.KafkaCluster(name, undefined, { urn });
|
|
80
99
|
case "confluentcloud:index/kafkaTopic:KafkaTopic":
|
|
81
100
|
return new exports.KafkaTopic(name, undefined, { urn });
|
|
101
|
+
case "confluentcloud:index/ksqlCluster:KsqlCluster":
|
|
102
|
+
return new exports.KsqlCluster(name, undefined, { urn });
|
|
82
103
|
case "confluentcloud:index/network:Network":
|
|
83
104
|
return new exports.Network(name, undefined, { urn });
|
|
84
105
|
case "confluentcloud:index/peering:Peering":
|
|
@@ -97,9 +118,12 @@ const _module = {
|
|
|
97
118
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/apiKey", _module);
|
|
98
119
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/connector", _module);
|
|
99
120
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/environment", _module);
|
|
121
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/identityPool", _module);
|
|
122
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/identityProvider", _module);
|
|
100
123
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaAcl", _module);
|
|
101
124
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaCluster", _module);
|
|
102
125
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/kafkaTopic", _module);
|
|
126
|
+
pulumi.runtime.registerResourceModule("confluentcloud", "index/ksqlCluster", _module);
|
|
103
127
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/network", _module);
|
|
104
128
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/peering", _module);
|
|
105
129
|
pulumi.runtime.registerResourceModule("confluentcloud", "index/privateLinkAccess", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|