Skip to content

Instantly share code, notes, and snippets.

View BrianSkipworth's full-sized avatar

Brian Skipworth BrianSkipworth

View GitHub Profile
@BrianSkipworth
BrianSkipworth / snsToSlack.js
Last active September 26, 2018 20:07 — forked from terranware/snsToSlack.js
AWS Lambda function to Slack Channel hookup
var services = '/services/...'; // Update this with your Slack webhook URL path
var channel = '#fleet-status'; // Update this with the Slack channel to post in
var username = 'Vehicle GeoFence Alert'; //Update this with the Slack username to show on the posts
var https = require('https');
var util = require('util');
function vehicleName(vehicleId) {
switch (vehicleId) {
case 9999991:return "Rex";