1. Packages
  2. Confluent Provider
  3. API Docs
  4. IdentityProvider
Confluent v2.23.0 published on Tuesday, Apr 1, 2025 by Pulumi

confluentcloud.IdentityProvider

Explore with Pulumi AI

General Availability

confluentcloud.IdentityProvider provides an Identity Provider resource that enables creating, editing, and deleting identity providers on Confluent Cloud.

Example Usage

Example Identity Provider: Azure AD

import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";

const azure = new confluentcloud.IdentityProvider("azure", {
    displayName: "My OIDC Provider: Azure AD",
    description: "My description",
    issuer: "https://login.microsoftonline.com/{tenant_id}/v2.0",
    jwksUri: "https://login.microsoftonline.com/common/discovery/v2.0/keys",
});
Copy
import pulumi
import pulumi_confluentcloud as confluentcloud

azure = confluentcloud.IdentityProvider("azure",
    display_name="My OIDC Provider: Azure AD",
    description="My description",
    issuer="https://login.microsoftonline.com/{tenant_id}/v2.0",
    jwks_uri="https://login.microsoftonline.com/common/discovery/v2.0/keys")
Copy
package main

import (
	"github.com/pulumi/pulumi-confluentcloud/sdk/v2/go/confluentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := confluentcloud.NewIdentityProvider(ctx, "azure", &confluentcloud.IdentityProviderArgs{
			DisplayName: pulumi.String("My OIDC Provider: Azure AD"),
			Description: pulumi.String("My description"),
			Issuer:      pulumi.String("https://login.microsoftonline.com/{tenant_id}/v2.0"),
			JwksUri:     pulumi.String("https://login.microsoftonline.com/common/discovery/v2.0/keys"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;

return await Deployment.RunAsync(() => 
{
    var azure = new ConfluentCloud.IdentityProvider("azure", new()
    {
        DisplayName = "My OIDC Provider: Azure AD",
        Description = "My description",
        Issuer = "https://login.microsoftonline.com/{tenant_id}/v2.0",
        JwksUri = "https://login.microsoftonline.com/common/discovery/v2.0/keys",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.IdentityProvider;
import com.pulumi.confluentcloud.IdentityProviderArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var azure = new IdentityProvider("azure", IdentityProviderArgs.builder()
            .displayName("My OIDC Provider: Azure AD")
            .description("My description")
            .issuer("https://login.microsoftonline.com/{tenant_id}/v2.0")
            .jwksUri("https://login.microsoftonline.com/common/discovery/v2.0/keys")
            .build());

    }
}
Copy
resources:
  azure:
    type: confluentcloud:IdentityProvider
    properties:
      displayName: 'My OIDC Provider: Azure AD'
      description: My description
      issuer: https://login.microsoftonline.com/{tenant_id}/v2.0
      jwksUri: https://login.microsoftonline.com/common/discovery/v2.0/keys
Copy

Example Identity Provider: Okta

import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";

const okta = new confluentcloud.IdentityProvider("okta", {
    displayName: "My OIDC Provider: Okta",
    description: "My description",
    issuer: "https://mycompany.okta.com/oauth2/default",
    jwksUri: "https://mycompany.okta.com/oauth2/default/v1/keys",
});
Copy
import pulumi
import pulumi_confluentcloud as confluentcloud

okta = confluentcloud.IdentityProvider("okta",
    display_name="My OIDC Provider: Okta",
    description="My description",
    issuer="https://mycompany.okta.com/oauth2/default",
    jwks_uri="https://mycompany.okta.com/oauth2/default/v1/keys")
Copy
package main

import (
	"github.com/pulumi/pulumi-confluentcloud/sdk/v2/go/confluentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := confluentcloud.NewIdentityProvider(ctx, "okta", &confluentcloud.IdentityProviderArgs{
			DisplayName: pulumi.String("My OIDC Provider: Okta"),
			Description: pulumi.String("My description"),
			Issuer:      pulumi.String("https://mycompany.okta.com/oauth2/default"),
			JwksUri:     pulumi.String("https://mycompany.okta.com/oauth2/default/v1/keys"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;

return await Deployment.RunAsync(() => 
{
    var okta = new ConfluentCloud.IdentityProvider("okta", new()
    {
        DisplayName = "My OIDC Provider: Okta",
        Description = "My description",
        Issuer = "https://mycompany.okta.com/oauth2/default",
        JwksUri = "https://mycompany.okta.com/oauth2/default/v1/keys",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.IdentityProvider;
import com.pulumi.confluentcloud.IdentityProviderArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var okta = new IdentityProvider("okta", IdentityProviderArgs.builder()
            .displayName("My OIDC Provider: Okta")
            .description("My description")
            .issuer("https://mycompany.okta.com/oauth2/default")
            .jwksUri("https://mycompany.okta.com/oauth2/default/v1/keys")
            .build());

    }
}
Copy
resources:
  okta:
    type: confluentcloud:IdentityProvider
    properties:
      displayName: 'My OIDC Provider: Okta'
      description: My description
      issuer: https://mycompany.okta.com/oauth2/default
      jwksUri: https://mycompany.okta.com/oauth2/default/v1/keys
Copy

External Documentation

Create IdentityProvider Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IdentityProvider(name: string, args: IdentityProviderArgs, opts?: CustomResourceOptions);
@overload
def IdentityProvider(resource_name: str,
                     args: IdentityProviderArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def IdentityProvider(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     description: Optional[str] = None,
                     display_name: Optional[str] = None,
                     issuer: Optional[str] = None,
                     jwks_uri: Optional[str] = None,
                     identity_claim: Optional[str] = None)
func NewIdentityProvider(ctx *Context, name string, args IdentityProviderArgs, opts ...ResourceOption) (*IdentityProvider, error)
public IdentityProvider(string name, IdentityProviderArgs args, CustomResourceOptions? opts = null)
public IdentityProvider(String name, IdentityProviderArgs args)
public IdentityProvider(String name, IdentityProviderArgs args, CustomResourceOptions options)
type: confluentcloud:IdentityProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IdentityProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IdentityProviderArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IdentityProviderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IdentityProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IdentityProviderArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var identityProviderResource = new ConfluentCloud.IdentityProvider("identityProviderResource", new()
{
    Description = "string",
    DisplayName = "string",
    Issuer = "string",
    JwksUri = "string",
    IdentityClaim = "string",
});
Copy
example, err := confluentcloud.NewIdentityProvider(ctx, "identityProviderResource", &confluentcloud.IdentityProviderArgs{
	Description:   pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	Issuer:        pulumi.String("string"),
	JwksUri:       pulumi.String("string"),
	IdentityClaim: pulumi.String("string"),
})
Copy
var identityProviderResource = new IdentityProvider("identityProviderResource", IdentityProviderArgs.builder()
    .description("string")
    .displayName("string")
    .issuer("string")
    .jwksUri("string")
    .identityClaim("string")
    .build());
Copy
identity_provider_resource = confluentcloud.IdentityProvider("identityProviderResource",
    description="string",
    display_name="string",
    issuer="string",
    jwks_uri="string",
    identity_claim="string")
Copy
const identityProviderResource = new confluentcloud.IdentityProvider("identityProviderResource", {
    description: "string",
    displayName: "string",
    issuer: "string",
    jwksUri: "string",
    identityClaim: "string",
});
Copy
type: confluentcloud:IdentityProvider
properties:
    description: string
    displayName: string
    identityClaim: string
    issuer: string
    jwksUri: string
Copy

IdentityProvider Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The IdentityProvider resource accepts the following input properties:

Description This property is required. string
A description for the Identity Provider.
DisplayName This property is required. string
A human-readable name for the Identity Provider.
Issuer
This property is required.
Changes to this property will trigger replacement.
string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
JwksUri
This property is required.
Changes to this property will trigger replacement.
string
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.
IdentityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

Description This property is required. string
A description for the Identity Provider.
DisplayName This property is required. string
A human-readable name for the Identity Provider.
Issuer
This property is required.
Changes to this property will trigger replacement.
string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
JwksUri
This property is required.
Changes to this property will trigger replacement.
string
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.
IdentityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

description This property is required. String
A description for the Identity Provider.
displayName This property is required. String
A human-readable name for the Identity Provider.
issuer
This property is required.
Changes to this property will trigger replacement.
String
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri
This property is required.
Changes to this property will trigger replacement.
String
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.
identityClaim String

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

description This property is required. string
A description for the Identity Provider.
displayName This property is required. string
A human-readable name for the Identity Provider.
issuer
This property is required.
Changes to this property will trigger replacement.
string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri
This property is required.
Changes to this property will trigger replacement.
string
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.
identityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

description This property is required. str
A description for the Identity Provider.
display_name This property is required. str
A human-readable name for the Identity Provider.
issuer
This property is required.
Changes to this property will trigger replacement.
str
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwks_uri
This property is required.
Changes to this property will trigger replacement.
str
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.
identity_claim str

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

description This property is required. String
A description for the Identity Provider.
displayName This property is required. String
A human-readable name for the Identity Provider.
issuer
This property is required.
Changes to this property will trigger replacement.
String
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri
This property is required.
Changes to this property will trigger replacement.
String
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.
identityClaim String

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

Outputs

All input properties are implicitly available as output properties. Additionally, the IdentityProvider resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing IdentityProvider Resource

Get an existing IdentityProvider resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: IdentityProviderState, opts?: CustomResourceOptions): IdentityProvider
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        identity_claim: Optional[str] = None,
        issuer: Optional[str] = None,
        jwks_uri: Optional[str] = None) -> IdentityProvider
func GetIdentityProvider(ctx *Context, name string, id IDInput, state *IdentityProviderState, opts ...ResourceOption) (*IdentityProvider, error)
public static IdentityProvider Get(string name, Input<string> id, IdentityProviderState? state, CustomResourceOptions? opts = null)
public static IdentityProvider get(String name, Output<String> id, IdentityProviderState state, CustomResourceOptions options)
resources:  _:    type: confluentcloud:IdentityProvider    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Description string
A description for the Identity Provider.
DisplayName string
A human-readable name for the Identity Provider.
IdentityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

Issuer Changes to this property will trigger replacement. string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
JwksUri Changes to this property will trigger replacement. string
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.
Description string
A description for the Identity Provider.
DisplayName string
A human-readable name for the Identity Provider.
IdentityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

Issuer Changes to this property will trigger replacement. string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
JwksUri Changes to this property will trigger replacement. string
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.
description String
A description for the Identity Provider.
displayName String
A human-readable name for the Identity Provider.
identityClaim String

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

issuer Changes to this property will trigger replacement. String
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri Changes to this property will trigger replacement. String
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.
description string
A description for the Identity Provider.
displayName string
A human-readable name for the Identity Provider.
identityClaim string

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

issuer Changes to this property will trigger replacement. string
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri Changes to this property will trigger replacement. string
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.
description str
A description for the Identity Provider.
display_name str
A human-readable name for the Identity Provider.
identity_claim str

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

issuer Changes to this property will trigger replacement. str
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwks_uri Changes to this property will trigger replacement. str
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.
description String
A description for the Identity Provider.
displayName String
A human-readable name for the Identity Provider.
identityClaim String

The JSON Web Token (JWT) claim to extract the authenticating identity to Confluent resources from Registered Claim Names. This appears in audit log records.

Note: When using Azure AD identity provider, you can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.

Note: If the client specifies mapping to one identity pool ID, the identity claim configured with that pool will be used instead.

issuer Changes to this property will trigger replacement. String
A publicly reachable issuer URI for the Identity Provider. The unique issuer URI string represents the entity for issuing tokens.
jwksUri Changes to this property will trigger replacement. String
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.

Import

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>"

$ pulumi import confluentcloud:index/identityProvider:IdentityProvider example op-abc123
Copy

!> Warning: Do not forget to delete terminal command history afterwards for security purposes.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Confluent Cloud pulumi/pulumi-confluentcloud
License
Apache-2.0
Notes
This Pulumi package is based on the confluent Terraform Provider.