confluent
Confluent Cloud for managing Kafka clusters, topics, and streaming services in a scalable cloud environment.
Provider Summary (v24.11.00270)
total services: 22
total methods: 391
total methods: 391
total resources: 111
total selectable resources: 81
total selectable resources: 81
See also:
[SHOW
] [DESCRIBE
] [REGISTRY
]
Installation
To pull the latest version of the confluent
provider, run the following command:
REGISTRY PULL confluent;
To view previous provider versions or to pull a specific provider version, see here.
Authentication
The following system environment variables are used for authentication by default:
CONFLUENT_CLOUD_API_KEY
- Confluent Cloud API key (see Confluent Cloud API keys)CONFLUENT_CLOUD_API_SECRET
- Confluent Cloud API secret (see Confluent Cloud API keys)
These variables are sourced at runtime (from the local machine or as CI variables/secrets).
Using different environment variables
To use different environment variables (instead of the defaults), use the --auth
flag of the stackql
program. For example:
AUTH='{ "anthropic": { "type": "basic", "username_var": "MY_CONFLUENT_CLOUD_API_KEY_VAR", "password_var": "MY_CONFLUENT_CLOUD_API_SECRET_VAR" }}'
stackql shell --auth="${AUTH}"
or using PowerShell:
$Auth = "{ 'anthropic': { 'type': 'basic', 'username_var': 'MY_CONFLUENT_CLOUD_API_KEY_VAR', 'password_var': 'MY_CONFLUENT_CLOUD_API_SECRET_VAR' }}"
stackql.exe shell --auth=$Auth