Skip to content

Instantly share code, notes, and snippets.

View MrRoyce's full-sized avatar

RSH MrRoyce

  • Total Design And Technology
  • Floriduh USA
View GitHub Profile
@MrRoyce
MrRoyce / function.js
Created August 2, 2016 19:38 — forked from vgeshel/function.js
AWS Lambda function for forwarding SNS notifications to Slack
console.log('Loading function');
const https = require('https');
const url = require('url');
// to get the slack hook url, go into slack admin and create a new "Incoming Webhook" integration
const slack_url = 'https://hooks.slack.com/services/...';
const slack_req_opts = url.parse(slack_url);
slack_req_opts.method = 'POST';
slack_req_opts.headers = {'Content-Type': 'application/json'};