Minor typos and remove extra dependencies.
This commit is contained in:
parent
5de7ed5292
commit
36e7395822
1 changed files with 3 additions and 6 deletions
|
@ -106,9 +106,6 @@ except ImportError:
|
||||||
print "failed=True msg='boto required for this module'"
|
print "failed=True msg='boto required for this module'"
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
# Required if importing key
|
|
||||||
import base64
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=dict(
|
||||||
|
@ -159,14 +156,14 @@ def main():
|
||||||
try:
|
try:
|
||||||
key.delete()
|
key.delete()
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
module.fail_json(msg="Unable to key pair '%s' - %s" % (key, e))
|
module.fail_json(msg="Unable to delete key pair '%s' - %s" % (key, e))
|
||||||
else:
|
else:
|
||||||
key = None
|
key = None
|
||||||
changed = True
|
changed = True
|
||||||
else:
|
else:
|
||||||
'''no match found, no changes required'''
|
'''no match found, no changes required'''
|
||||||
|
|
||||||
# Ensure requested group is present
|
# Ensure requested key is present
|
||||||
elif state == 'present':
|
elif state == 'present':
|
||||||
if key:
|
if key:
|
||||||
'''existing key found'''
|
'''existing key found'''
|
||||||
|
@ -175,7 +172,7 @@ def main():
|
||||||
# the key has been created of imported.
|
# the key has been created of imported.
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# if the group doesn't exist, create it now
|
# if the key doesn't exist, create it now
|
||||||
else:
|
else:
|
||||||
'''no match found, create it'''
|
'''no match found, create it'''
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
|
|
Loading…
Reference in a new issue