Sha256: 74ac658087a3535fedcabcf8115946be3244eb4680bd84a5af7b5c7cc1f32633
Contents?: true
Size: 294 Bytes
Versions: 24
Compression:
Stored size: 294 Bytes
Contents
module SimpleDeploy class StackDestroyer def initialize(args) @config = SimpleDeploy.config @name = args[:name] end def destroy cloud_formation.destroy @name end private def cloud_formation @cf ||= AWS::CloudFormation.new end end end
Version data entries
24 entries across 24 versions & 1 rubygems