* Activate the AWS S3 destination plugin Add the AWS S3 destination plugin to the list of available Lemur plugins. Update the S3 destination plugin's "accountNumber" option to be of type 'str' to handle account numbers starting with zeros. Update Lemur's utils for parsing certificates to correctly encode the X509 certificates before loading for python3. * Add S3 destination plugin test Added simple test to verify S3 destination plugin is available.
7 lines
120 B
Python
7 lines
120 B
Python
|
|
def test_get_certificates(app):
|
|
from lemur.plugins.base import plugins
|
|
|
|
p = plugins.get('aws-s3')
|
|
assert p
|