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
{ | |
"action_id": "44f40b4a-65e9-479a-b2bf-40ec57111c88", | |
"interaction_id": "667187cd-55b8-4eb7-8476-7a76564587d4", | |
"project": { | |
"id": "4c267d96-2fe6-4764-8d8a-a33849cd05d8" | |
}, | |
"resource": { | |
"id": "3188b2f6-214d-480b-b8e2-0b985039b079", | |
"type": "asset" | |
}, |
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
// Lambda 1 - arv-foo | |
// Synchronous fn that will back API Gateway endpoint. | |
const AWS = require('aws-sdk'); | |
const lambda = new AWS.Lambda(); | |
const getRandomInt = (max) => Math.floor(Math.random() * Math.floor(max)); | |
exports.handler = async (event, context) => { | |
console.log("event:", event) |
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
license: gpl-3.0 |
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
license: gpl-3.0 |
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
#!bin/bash | |
# BrowserStack SSH Tunnel Setup | |
# Find key by logging into BrowserStack --> finding command line setup info | |
KEY=[YOUR_KEY_HERE] | |
# Add internal hosts here | |
INTERNAL_HOSTS=stgwebus | |
# Change argument to add +1 internal host: ${host}.[hostname].com,80,0,${host}.example.com,443,1 |
NewerOlder