This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
try: | |
import boto.ec2 | |
except ImportError: | |
print "failed=True msg='boto required for this module'" | |
sys.exit(1) | |
def main(): | |
argument_spec = ec2_argument_spec() |