Skip to content

Instantly share code, notes, and snippets.

@JeffRausch
JeffRausch / function.js
Last active June 11, 2018 19:51 — forked from vgeshel/function.js
Function to send an AWS CloudWatch alarm message 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'};