0.0
No commit activity in last 3 years
No release in over 3 years
Automatic bucket purge for sfn
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Bucket purge for sfn

Simple callback for sfn which will run before executing the destroy command. It will search the stack for bucket resources and delete all files within any found buckets.

Usage

Setup

First add the sfn-bucketpurge gem to the local bundle (in the ./Gemfile):

group :sfn do
  gem 'sfn-bucketpurge'
end

Then enable the sfn-bucketpurge callback in the .sfn configuration file:

Configuration.new do
  ...
  callbacks do
    require ['sfn-bucketpurge']
    default ['bucket_purge']
  end
end

Info