1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2024-12-26 07:57:05 +00:00

Issue 994: Allow EC2 instance profile to grant access to S3 backups, rather than requiring S3 Access/Secret Keys

This commit is contained in:
Robert T. Brown (-rb) 2024-12-08 18:41:12 -05:00
parent e931e103fe
commit 5a82a779fd

View File

@ -511,6 +511,11 @@ def list_target_files(config):
# connect to the region & bucket # connect to the region & bucket
try: try:
if (config['target_user'] == '') and (config['target_pass'] == ''):
## User did not specify an S3 Access Key, nor a S3 Secret Access Key. Perhaps using EC2 instance role?
s3 = boto3.client('s3', \
endpoint_url=f'https://{target.hostname}')
else:
s3 = boto3.client('s3', \ s3 = boto3.client('s3', \
endpoint_url=f'https://{target.hostname}', \ endpoint_url=f'https://{target.hostname}', \
aws_access_key_id=config['target_user'], \ aws_access_key_id=config['target_user'], \