# rpk cluster config list

> For the complete documentation index, see [llms.txt](https://docs.redpanda.com/llms.txt). Component-specific: [cloud-data-platform-full.txt](https://docs.redpanda.com/cloud-data-platform-full.txt)

---
title: rpk cluster config list
latest-operator-version: v26.1.4
latest-console-tag: v3.7.3
latest-connect-version: 4.93.0
latest-redpanda-tag: v26.1.9
docname: rpk/rpk-cluster/rpk-cluster-config-list
page-component-name: cloud-data-platform
page-version: master
page-component-version: master
page-component-title: Cloud
page-relative-src-path: rpk/rpk-cluster/rpk-cluster-config-list.adoc
page-edit-url: https://github.com/redpanda-data/cloud-docs/edit/main/modules/reference/pages/rpk/rpk-cluster/rpk-cluster-config-list.adoc
page-git-created-date: "2025-08-01"
page-git-modified-date: "2026-05-26"
---

<!-- Source: https://docs.redpanda.com/cloud-data-platform/reference/rpk/rpk-cluster/rpk-cluster-config-list.md -->

This command lists all available cluster configuration properties.

Use [`rpk cluster config get`](https://docs.redpanda.com/cloud-data-platform/reference/rpk/rpk-cluster/rpk-cluster-config-get/) to retrieve specific property values.

Use the `--filter` flag with a regular expression to filter configuration keys. This is useful for exploring related configuration properties or finding specific settings.

## [](#usage)Usage

```bash
rpk cluster config list [flags]
```

## [](#examples)Examples

List all cluster configuration properties:

```bash
rpk cluster config list
```

List configuration properties matching a filter:

```bash
rpk cluster config list --filter="kafka.*"
```

Filter properties containing "log":

```bash
rpk cluster config list --filter=".*log.*"
```

Filter with case-insensitive matching:

```bash
rpk cluster config list --filter="(?i)batch.*"
```

List configuration properties in JSON format:

```bash
rpk cluster config list --format=json
```

List configuration properties in YAML format:

```bash
rpk cluster config list --format=yaml
```

## [](#flags)Flags

| Value | Type | Description |
| --- | --- | --- |
| --filter | string | Filter configuration keys using regular expression. |
| --format | string | Output format. Possible values: json, yaml, text, wide, help. Default: text. |
| -h, --help | - | Help for list. |
| --config | string | Redpanda or rpk config file; default search paths are /var/lib/redpanda/.config/rpk/rpk.yaml, $PWD/redpanda.yaml, and /etc/redpanda/redpanda.yaml. |
| -X, --config-opt | stringArray | Override rpk configuration settings. See rpk -X or execute rpk -X help for inline detail or rpk -X list for terser detail. |
| --profile | string | Profile to use. See rpk profile for more details. |
| -v, --verbose | - | Enable verbose logging. |