├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # PyInstaller 26 | # Usually these files are written by a python script from a template 27 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 28 | *.manifest 29 | *.spec 30 | 31 | # Installer logs 32 | pip-log.txt 33 | pip-delete-this-directory.txt 34 | 35 | # Unit test / coverage reports 36 | htmlcov/ 37 | .tox/ 38 | .coverage 39 | .coverage.* 40 | .cache 41 | nosetests.xml 42 | coverage.xml 43 | *,cover 44 | 45 | # Translations 46 | *.mo 47 | *.pot 48 | 49 | # Django stuff: 50 | *.log 51 | 52 | # Sphinx documentation 53 | docs/_build/ 54 | 55 | # PyBuilder 56 | target/ 57 | 58 | # Mac 59 | .DS_Store 60 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Project Retired 2 | 3 | When Amazon Inspector launched, this project was created in order to provide the custom code required to trigger various actions in Trend Micro Deep Security when various Inspector raised a finding related to an assessment. 4 | 5 | Over time, the Deep Security API has evolved and more Amazon Inspector features have been added, making this workflow easier using the APIs. Therefore this code has been retired and moved to a separate 'retired' branch. 6 | 7 | To create the workflow using the newest APIs, please refer to [Integrate Deep Security with AWS Services](https://automation.deepsecurity.trendmicro.com/article/12_1/integrate-deep-security-with-aws-services?platform=dsaas) in the Deep Security Automation Center. --------------------------------------------------------------------------------