Project

cfn-events

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
cfn-events reads the events for an AWS CloudFormation stack. It can be used to "tail" the log, and to wait until a stack update is resolved, successfully or otherwise. Defaults to eu-west-1, or whatever $AWS_REGION is set to. Respects $https_proxy.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.0

Runtime

 Project Readme

cfn-events

Watch AWS CloudFormation stack events and wait for completion.

Installation

  gem build cfn-events.gemspec
  gem install cfn-events*.gem

Use

Example usages (all assuming the stack name MyStack):

  # Show recent events
  cfn-events MyStack

  # Show recent events, and poll for new events, forever (ctrl-C to end)
  cfn-events --forever MyStack

  # Show recent events, and poll for new events, until the stack reaches a
  # stable state
  cfn-events --wait MyStack

More options are available; see cfn-events --help.

cfn-events can also be used as a Ruby library. See bin/cfn-events for a guide for how to do this.