Skip to content
New issue

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

Paws::Credential::File incorrectly uses AWS_CONFIG_FILE instead of AWS_SHARED_CREDENTIALS_FILE #431

Open
melutovich opened this issue Sep 6, 2023 · 0 comments

Comments

@melutovich
Copy link

existing code is:

has credentials_file => (is => 'ro', lazy => 1, default => sub {
my $self = shift;
if (defined $ENV{AWS_CONFIG_FILE}){
return $ENV{AWS_CONFIG_FILE};
} else {
return $self->path . '/' . $self->file_name;
}
});

I believe this should be:

has credentials_file => (is => 'ro', lazy => 1, default => sub {
my $self = shift;
if (defined $ENV{AWS_SHARED_CREDENTIALS_FILE}){
return $ENV{AWS_SHARED_CREDENTIALS_FILE};
} else {
return $self->path . '/' . $self->file_name;
}
});

Based on what I see in:
https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-envvars.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant