summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevon Crouse <devon.crouse@returnpath.com>2014-03-11 18:19:03 -0600
committerMichael DeHaan <michael.dehaan@gmail.com>2014-03-12 16:00:41 -0400
commit521e135cb3b6da1117efb1ca8fc8a115fda7955d (patch)
tree70e978f4f0462e8cc806f406affbf12eb2d39399
parentd808604a51a903ff79361ba9d4f4c947136e0bca (diff)
downloadansible-521e135cb3b6da1117efb1ca8fc8a115fda7955d.tar.gz
Fixed references to missing method in ec2 modules
Change-Id: I9b89d433b545269d111b3c290b6411aabf58dd24
-rw-r--r--library/cloud/route532
-rw-r--r--library/cloud/s32
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cloud/route53 b/library/cloud/route53
index 2ff22ded9d..07fb551ff1 100644
--- a/library/cloud/route53
+++ b/library/cloud/route53
@@ -157,7 +157,7 @@ def commit(changes):
time.sleep(500)
def main():
- argument_spec = ec2_argument_keys_spec()
+ argument_spec = ec2_argument_spec()
argument_spec.update(dict(
command = dict(choices=['get', 'create', 'delete'], required=True),
zone = dict(required=True),
diff --git a/library/cloud/s3 b/library/cloud/s3
index 6e566e4b8d..99054183ed 100644
--- a/library/cloud/s3
+++ b/library/cloud/s3
@@ -249,7 +249,7 @@ def is_walrus(s3_url):
return False
def main():
- argument_spec = ec2_argument_keys_spec()
+ argument_spec = ec2_argument_spec()
argument_spec.update(dict(
bucket = dict(required=True),
object = dict(),