v.24.2New Feature

Support Permitted Users for S3 Settings via Config User Key

Support specifying a set of permitted users for specific S3 settings in config using user key. #60144 (Antonio Andelic).
Added support for specifying a set of permitted users for individual S3 settings in the ClickHouse configuration using the user key.

Why it matters

This feature allows finer access control by restricting specific S3 configurations to a whitelist of users, enhancing security and ensuring that only authorized users can use particular S3 settings.

How to use it

In the ClickHouse configuration file, under the S3 settings section, add the user key with a list of permitted usernames to restrict access. For example:

s3:
custom_settings:
user: ["user1", "user2"]
...


This restricts the S3 setting to the users specified in the list.