Skip to content

Instantly share code, notes, and snippets.

@lox
lox / cfn-signal
Created July 1, 2014 07:05
A bash script to signal CloudFormation WaitConditions without cfn-bootstrap
#!/bin/bash
set -e
## Signal CloudFormation WaitConditions without cfn-bootstrap
## See https://github.com/blake-education/aws-cfn-bootstrap/blob/master/bin/cfn-signal
if [ $# -eq 0 ] ; then
echo "usage: $0 <cfn url> <last exit code>"
exit 1
fi