8000 Unbundle AWS::Signature4 by ferki · Pull Request #915 · RexOps/Rex · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Unbundle AWS::Signature4 #915

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

Merged
merged 1 commit into from
Jan 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Rex/Cloud/Amazon.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use warnings;

use Rex::Logger;
use Rex::Cloud::Base;
use Rex::Cloud::Amazon::Sign;
use AWS::Signature4;
use HTTP::Request::Common;

use base qw(Rex::Cloud::Base);
Expand Down Expand Up @@ -54,7 +54,7 @@ sub new {

sub signer {
my ($self) = @_;
return Rex::Cloud::Amazon::Sign->new(
return AWS::Signature4->new(
-access_key => $self->{__access_key},
-secret_key => $self->{__secret_access_key}
);
Expand Down
305 changes: 0 additions & 305 deletions lib/Rex/Cloud/Amazon/Sign.pm

This file was deleted.

0