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
It seems to me that the removal of the lazy flags by a60f750 is causing has_temp_creds and has_SecurityToken to always return true in _sign_v2:
lazy
has_temp_creds
has_SecurityToken
_sign_v2
https://github.com/mrallen1/net-amazon-ec2/blob/ceeb817cc7c3606333cb4e0f7f454856583146fb/lib/Net/Amazon/EC2.pm#L296-L298
causing v2 authentication to fail.
No time to make a full showcase (sorry) but in my code I had to dirty-clean SecurityToken and temp_creds as a workaround.
delete $ec2->{SecurityToken}; delete $ec2->{temp_creds};
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems to me that the removal of the
lazy
flags by a60f750 is causinghas_temp_creds
andhas_SecurityToken
to always return true in_sign_v2
:https://github.com/mrallen1/net-amazon-ec2/blob/ceeb817cc7c3606333cb4e0f7f454856583146fb/lib/Net/Amazon/EC2.pm#L296-L298
causing v2 authentication to fail.
No time to make a full showcase (sorry) but in my code I had to dirty-clean SecurityToken and temp_creds as a workaround.
The text was updated successfully, but these errors were encountered: