Cloud

ALTER STORAGE

The ALTER STORAGE statement modifies the credentials or configuration of an existing storage connection.

In Redpanda Cloud, the storage connection and Iceberg catalog used to query Iceberg-enabled topics are configured and managed automatically when you enable Redpanda SQL on a cluster that has an Iceberg REST catalog configured. You don’t run these statements yourself for that workflow. This page documents the statement’s syntax and options so you can understand what Redpanda Cloud configures. See Query Iceberg-enabled topics.

Syntax

ALTER STORAGE [IF EXISTS] storage_name
WITH (option = 'value' [, ...]);
  • storage_name: Name of the storage connection to modify.

  • IF EXISTS: Optional. Prevents an error if the storage connection does not exist.

  • option = 'value': One or more options to update. See CREATE STORAGE for the full list of options.

Examples

Update the region for an existing storage connection:

ALTER STORAGE archive_storage
WITH (region = 'eu-west-1');