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
at current, the module references Paws::Credential::None here
p5-paws-credential-webidentity/lib/Paws/Credential/AssumeRoleWebIdentity.pm
Line 5 in b229812
this results in unexpected default behavior with the STS object trying the built in Paws::Credential::ProviderChain and failing.
i tested locally by changing:
has sts => ( is => 'ro', isa => 'Paws::STS', lazy => 1, default => sub { my $self = shift; Paws->service('STS', region => $self->sts_region ); } );
to:
has sts => ( is => 'ro', isa => 'Paws::STS', lazy => 1, default => sub { my $self = shift; Paws->service('STS', credentials => Paws::Credential::None->new, region => $self->sts_region ); } );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
at current, the module references Paws::Credential::None here
p5-paws-credential-webidentity/lib/Paws/Credential/AssumeRoleWebIdentity.pm
Line 5 in b229812
this results in unexpected default behavior with the STS object trying the built in Paws::Credential::ProviderChain and failing.
i tested locally by changing:
to:
The text was updated successfully, but these errors were encountered: