So, I'm using boto3 s3 with a python script just to list the bucket.
s3_client = boto3.client('s3')
It works fine when I run it on my desktop because I setup the aws_access_key_id and aws_secret_access_key with my aws configure command.
When I run it on AWS as a container, am I going to need to run my container with environmental variables for the aws_access_key_id and aws_secret_access_key when I use boto3 or if I have my setup for my container user having access to s3, will that work and I don't need to use the keys?