ticloud serverless audit-log filter-rule update

June 24, 2025 ยท View on GitHub

Update an audit log filter rule for a TiDB Cloud Serverless cluster.

ticloud serverless audit-log filter-rule update [flags]

Or use the following alias command:

ticloud serverless audit-log filter update [flags]

Examples

Update an audit log filter rule in interactive mode:

ticloud serverless audit-log filter update

Enable an audit log filter rule in non-interactive mode:

ticloud serverless audit-log filter update --cluster-id <cluster-id> --name <rule-name> --enabled

Disable an audit log filter rule in non-interactive mode:

ticloud serverless audit-log filter update --cluster-id <cluster-id> --name <rule-name> --enabled=false

Update filters of an audit log filter rule in non-interactive mode:

ticloud serverless audit-log filter update --cluster-id <cluster-id> --name <rule-name> --rule '{"users":["%@%"],"filters":[{"classes":["QUERY"],"tables":["test.t"]}]}'

Flags

In non-interactive mode, you need to manually enter the required flags. In interactive mode, you can just follow CLI prompts to fill them in.

FlagDescriptionRequiredNote
-c, --cluster-id stringThe ID of the cluster.YesOnly works in non-interactive mode.
--name stringThe name of the filter rule to update.YesOnly works in non-interactive mode.
--enabledEnables or disables the filter rule.NoOnly works in non-interactive mode.
--rule stringThe new, complete filter rule expression. Use ticloud serverless audit-log filter template to see filter templates.NoOnly works in non-interactive mode.
-h, --helpShows help information for this command.NoWorks in both non-interactive and interactive modes.

Inherited flags

FlagDescriptionRequiredNote
--no-colorDisables color in output.NoOnly works in non-interactive mode. In interactive mode, disabling color might not work with some UI components.
-P, --profile stringSpecifies the active user profile used in this command.NoWorks in both non-interactive and interactive modes.
-D, --debugEnables debug mode.NoWorks in both non-interactive and interactive modes.

Feedback

If you have any questions or suggestions on the TiDB Cloud CLI, feel free to create an issue. Also, we welcome any contributions.