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
# Written in Python 3.x | |
# in AWS Lambda, set: | |
# - the runtime to Python 3.x | |
# - the handler to: lambda_function.lambda_handler | |
# in Deep Security output the events to a valid SNS topic | |
# - more at https://help.deepsecurity.trendmicro.com/sns.html?Highlight=sns | |
# connect the AWS Lambda function to the SNS topic via a trigger | |
# - more at https://help.deepsecurity.trendmicro.com/sns.html?Highlight=sns | |
# - or do it via the AWS Lambda Management Console on the web (much, much simpler) | |
# |
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/env ruby | |
#^syntax detection | |
site 'http://community.opscode.com/api/v1' | |
cookbook 'apt' | |
cookbook 'git', | |
git: 'https://github.com/fnichol/chef-git.git' | |
cookbook 'build-essential' | |
cookbook 'rvm', |