mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed references to missing method in ec2 modules
Change-Id: I9b89d433b545269d111b3c290b6411aabf58dd24
This commit is contained in:
parent
a689e42d32
commit
b853778a93
2 changed files with 2 additions and 2 deletions
|
@ -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),
|
||||
|
|
|
@ -271,7 +271,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(),
|
||||
|
|
Loading…
Reference in a new issue