Confluent Provider: Installation & Configuration
The Pulumi Confluent Cloud provider uses the Confluent Cloud SDK to manage and provision resources.
Installation
The Confluent Cloud provider is available as a package in all Pulumi languages:
- JavaScript/TypeScript:
@pulumi/confluentcloud
- Python:
pulumi-confluentcloud
- Go:
github.com/pulumi/pulumi-confluentcloud/sdk/go/confluentcloud
- .NET:
Pulumi.ConfluentCloud
- Java:
com.pulumi/confluentcloud
Configuring Credentials
Pulumi relies on the Confluent Cloud SDK to authenticate requests from your computer to Confluent Cloud. Your credentials are never sent to pulumi.com. The Pulumi Confluent Cloud Provider needs to be configured with Confluent Cloud credentials before it can be used to create resources. Once the credentials are obtained, there are two ways to communicate your authorization tokens to Pulumi:
Set the environment variables
CONFLUENT_CLOUD_API_KEY
andCONFLUENT_CLOUD_API_SECRET
:$ export CONFLUENT_CLOUD_API_KEY=XXXXXXXXXXXXXX $ export CONFLUENT_CLOUD_API_SECRET=YYYYYYYYYYYYYY
Set them using configuration, if you prefer that they be stored alongside your Pulumi stack for easy multi-user access:
$ pulumi config set confluentcloud:cloudApiKey XXXXXXXXXXXXXX $ pulumi config set confluentcloud:cloudApiSecret YYYYYYYYYYYYYY --secret
Remember to pass --secret
when setting confluentcloud:cloudApiKey
and confluentcloud:cloudApiSecret
so that it is properly encrypted. The complete list of
configuration parameters is in the Confluent Cloud provider README.