Skip to content

Instantly share code, notes, and snippets.

@hexsprite
Last active January 3, 2016 11:59
Show Gist options
  • Select an option

  • Save hexsprite/8460256 to your computer and use it in GitHub Desktop.

Select an option

Save hexsprite/8460256 to your computer and use it in GitHub Desktop.
Use OSX Notification to notify when CloudFormation stack is ready to use
while aws cloudformation describe-stacks | grep CREATE_IN_PROGRESS >/dev/null;
do
sleep 1;
done
terminal-notifier -message "Environment Ready"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment