Confluent Cloud v0.2.2, Dec 10 21
Confluent Cloud (Deprecated)
Note
This provider has been deprecated as of July 2022. It is recommended to use the Official Confluent Provider as a replacement.
Unfortunately, there is no upgrade path from this provider to the Official Confluent provider, but you can take advantage of the Pulumi Import to help achieve the migration.
The Confluent Cloud provider for Pulumi can be used to provision any of the cloud resources available in Confluent Cloud. The Confluent Cloud provider must be configured with credentials to deploy and update resources in Confluent Cloud.
Example
const ccloud = require("@pulumi/confluent")
const env = new ccloud.ConfluentEnvironment("ts-environment");
import * as ccloud from "@pulumi/confluent";
const env = new ccloud.ConfluentEnvironment("ts-environment");
import pulumi_confluent as ccloud
environment = ccloud.ConfluentEnvironment("py-env")
package main
import (
"github.com/pulumi/pulumi-confluent/sdk/go/confluent"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
env, err := confluent.NewConfluentEnvironment(ctx, "py-env", nil)
if err != nil {
return err
}
return nil
})
}
using Pulumi;
using Pulumi.Confluent;
await Deployment.RunAsync(() =>
{
var environment = new CCloud.ConfluentEnvironment("csharp-env");
});