Giter Club home page Giter Club logo

Comments (4)

bacoboy avatar bacoboy commented on June 25, 2024 1

When dealing with multiple accounts, sometimes there is no default.

There are really 2 things needed to be complete:

  1. specify a non default profile (from ~/.aws/credentials)
  2. specify as role ARN to assume. The SDK doesn't read ~/.aws/config like the aws CLI does, you need to call STS to assume roles.

So in my case, I have keys for an account, but need to assume a role in another account to perform the operation. For instance my config might look like this:

% cat ~/.aws/config
[production]
region = us-east-1

[profile admin]
role_arn = arn:aws:iam::XXXXXXXX:role/Admin
source_profile = production
region = us-east-1

My S3 operation on the CLI might look like this:

aws --profile admin s3 sync XXXXX

Under the hood, the CLI uses the production credentials in ~/.aws/credentials and then assumes the role via STS.

If you can support both these case, you'll be perfect. The SDK does the first one automatically for you if you use the default credentials provider chain. The STS role assumption stuff you'll need to add more code for.

from deb-s3.

bacoboy avatar bacoboy commented on June 25, 2024 1

Nobody parses the config file except the aws cli that I have found. I did something similar for unicreds here.

Your patch looks more or less correct. The role arn is just an updated config you use in the client setup. The force_path_style seems to be s3 specific and not related to the credentials setup. I'd pull that block out of the if/else to update the config if role arn is specified.

from deb-s3.

krobertson avatar krobertson commented on June 25, 2024

I'll look into this... prefer to be able to have it automatically pick one up.

from deb-s3.

alex-pw avatar alex-pw commented on June 25, 2024

Here is an example diff that lets me set role-arn via the CLI. It would be more ideal to respect the aws config files properly, but this is a quick workaround. I haven't yet figured out where to put the force_path_style option for the STS connection.

patch.diff.txt

from deb-s3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.