Class: TerraformWrapper::Tasks::Destroy
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- TerraformWrapper::Tasks::Destroy
- Includes:
- Shared::Logging
- Defined in:
- lib/terraform-wrapper/tasks/destroy.rb
Instance Method Summary collapse
- #destroy_task ⇒ Object
-
#initialize(binary:, code:, options:) {|_self| ... } ⇒ Destroy
constructor
A new instance of Destroy.
Methods included from Shared::Logging
configure_logger_for, logger_for
Constructor Details
#initialize(binary:, code:, options:) {|_self| ... } ⇒ Destroy
Returns a new instance of Destroy.
22 23 24 25 26 27 28 29 30 |
# File 'lib/terraform-wrapper/tasks/destroy.rb', line 22 def initialize(binary:, code:, options:) @binary = binary @code = code @options = yield self if block_given? destroy_task end |
Instance Method Details
#destroy_task ⇒ Object
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/terraform-wrapper/tasks/destroy.rb', line 34 def destroy_task desc 'Destroys infrastructure with Terraform for a given configuration on an infrastructure component.' task :destroy, [:config] => :binary do |_t, args| = @options.merge({ 'name' => args[:config] }) logger.info('Processing configuration for Terraform destroy...') config = TerraformWrapper::Shared::Config.new(code: @code, options: ) runner = TerraformWrapper::Shared::Runner.new(binary: @binary, code: @code) logger.info("Running Terraform destroy for service: #{config.service}, component: #{@code.name}...") runner.init(config: config) runner.destroy end end |