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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: