Wasabi
Configure AWS CLI to use Wasabi on macOS
Section titled “Configure AWS CLI to use Wasabi on macOS”- Install AWS CLI and the endpoint plugin:
Terminal window # Install AWS CLIbrew install awscli# Install the endpoint plugin (allows to configure endpoints in profiles)/opt/homebrew/bin/pip3 install --user --break-system-packages awscli-plugin-endpoint# Create directory for configuration filesmkdir -p ~/.aws# Set permissions on the directorychmod 700 ~/.aws - Configure the plugin by modifying
~/.aws/config- adjusting thecli_legacy_plugin_pathas needed:[plugins]endpoint = awscli_plugin_endpointcli_legacy_plugin_path = /Users/claus/Library/Python/3.13/lib/python/site-packages[profile wasabi]region = eu-central-1iam =endpoint_url = https://iam.eu-central-1.wasabisys.coms3 =endpoint_url = https://s3.eu-central-1.wasabisys.coms3api =endpoint_url = https://s3.eu-central-1.wasabisys.com - Configure access key and secret key:
Terminal window aws configure --profile wasabi - The profile can now be used - as an example, list buckets in Wasabi:
Terminal window aws s3 ls --profile wasabi