1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-03 00:07:05 +00:00

Empty user and password for backups for AWS Instance roles

This commit is contained in:
Hugo Galindo 2024-02-23 13:25:17 +11:00
parent e931e103fe
commit 7a50e647b4

View File

@ -511,6 +511,9 @@ def list_target_files(config):
# connect to the region & bucket
try:
if config['target_user'] == "" and config['target_pass'] == "":
s3 = boto3.client('s3', endpoint_url=f'https://{target.hostname}')
else:
s3 = boto3.client('s3', \
endpoint_url=f'https://{target.hostname}', \
aws_access_key_id=config['target_user'], \