Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Doesn't work with federated accounts #7

@Speculor

Description

@Speculor

Using a federated (ie SSO) account does not work with the existing aws_mixin.rb. It throws the following:
Must specify userName when calling with non-User credentials (Aws::IAM::Errors::ValidationError)
To fix I had to update the get_aws_account_id method at line 34 to use the STS client instead of the IAM client:

def get_aws_account_id(credentials:)
    iam = Aws::STS::Client.new(region: 'us-east-1', credentials: credentials)
    user = iam.get_caller_identity
    user[:arn].match('^arn:aws:sts::([0-9]{12}):.*$')[1]
  end
end

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions