Hi, I'm working on a POC at the moment which is de...
# getting-started
i
Hi, I'm working on a POC at the moment which is designed to push data to S3. The issue for me is that the AWS focussed
target-s3-parquet
or
target-s3
plugins require the AWS
aws_access_key_id
and
aws_secret_access_key
. Om my local machine I have access to AWS resurces via profiles used by 'aws sso login'. Is Meltano capable of doing the equivalent of
boto3.setup_default_session()
to provide the required credentials to the plugins?
s
The aws sso login creates temporary credentials if I remember correctly. I think you can simply dump them and supply them to your plugin. If that works, it's a bash two liner to get them into the env every time via something like:
aws configure export-credentials --profile your-profile-name --format env
i
Perfect! I'll try that, many thanks.