1. Packages
  2. Confluent Cloud
  3. Installation & Configuration
Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi

Confluent Cloud: Installation & Configuration

confluentcloud logo
Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi

    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:

    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:

    1. Set the environment variables CONFLUENT_CLOUD_API_KEY and CONFLUENT_CLOUD_API_SECRET:

      $ export CONFLUENT_CLOUD_API_KEY=XXXXXXXXXXXXXX
      $ export CONFLUENT_CLOUD_API_SECRET=YYYYYYYYYYYYYY
      
    2. 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.

    confluentcloud logo
    Confluent v1.38.0 published on Thursday, Mar 21, 2024 by Pulumi