gitlab-org--gitlab-foss/app/workers/terraform/states/destroy_worker.rb

24 lines
513 B
Ruby

# frozen_string_literal: true
module Terraform
module States
class DestroyWorker
include ApplicationWorker
queue_namespace :terraform
feature_category :infrastructure_as_code
deduplicate :until_executed
idempotent!
urgency :low
data_consistency :always
def perform(terraform_state_id)
if state = Terraform::State.find_by_id(terraform_state_id)
Terraform::States::DestroyService.new(state).execute
end
end
end
end
end