CloudFormation Stack Manager (to view / delete AWS CloudFormation Stacks)
#Requirements
#Installation/Setup
git clone <this repo>
npm install
#Options
- profile : (optional) Loads the profile from ~/.aws/credentials. If not specified, loads the 'default' profile. For details on how to configure the profiles, see here
- action : (optional) Acceptable values are 'list','delete' . Default : 'list'
- region : (optional) Valid AWS Regions (more here)
- filterByStatus : (optional) Valid CloudFormation Stack Statuses (more here). Specify more than one status separated by commas. If not specified, cf-manager will attempt to list stacks of all statuses. Please note that this may
- pattern : (optional) A string pattern that the name(s) of CloudFormation stack(s) begin with. If not specified, cf-manager will attempt to list all cloudformation stacks. Warning: Not specifying a status may exceed the throttle rate for API requests
- help : (optional) Display a helpful usage message
#Example usage
cfmgr --pattern foo-bar- --filterByStatus CREATE_COMPLETE --action delete
The above command will list all stacks that start with "foo-bar-" and with status 'CREATE_COMPLETE' and will request input for deletion
Please report bugs here