We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to upload data to Mapbox S3 staging server and the API documentation from Mapbox uses this example for AWS CLI:
$ export AWS_ACCESS_KEY_ID={accessKeyId} $ export AWS_SECRET_ACCESS_KEY={secretAccessKey} $ export AWS_SESSION_TOKEN={sessionToken} $ aws s3 cp /path/to/file s3://{bucket}/{key} --region us-east-1
Link to API Doc
My problem is that i haven´t found a node where i can pass the sessionToken into for this IAM authentication.
Is there already a way to do this or might that be a feature for furure development of this integration?
Thank a lot.
The text was updated successfully, but these errors were encountered:
with msg.AWSConfig, I was able to specify the sessionToken and make it work like:
msg.AWSConfig = { "accessKeyId": "ACCESSKEY", "secretAccessKey": "SECRETACCESSKEY", "sessionToken": "SESSIONTOKEN", "region":"ap-northeast-1" }
Sorry, something went wrong.
No branches or pull requests
I am trying to upload data to Mapbox S3 staging server and the API documentation from Mapbox uses this example for AWS CLI:
Link to API Doc
My problem is that i haven´t found a node where i can pass the sessionToken into for this IAM authentication.
Is there already a way to do this or might that be a feature for furure development of this integration?
Thank a lot.
The text was updated successfully, but these errors were encountered: