Files
weirdAAL/modules/elasticbeanstalk.py
2018-04-19 11:12:56 -04:00

33 lines
830 B
Python

'''
This file is used to perform some ElasticBeanstalk actions
'''
from libs.elasticbeanstalk import *
'''
There is a weird issue that AWS says everyone has elasticbeanstalk permissions
despite not running any of these services - in other words it wont be abnormal
for recon to say it has elasticbeantalk permissions but nothing get returned
when you run these functions
'''
def module_elasticbeanstalk_describe_applications():
describe_applications()
def module_elasticbeanstalk_describe_applications_versions():
describe_application_versions()
# not working
# def module_elasticbeanstalk_describe_configuration_options():
# describe_configuration_options()
def module_elasticbeanstalk_describe_environments():
describe_environments()
def module_elasticbeanstalk_describe_events():
describe_events()