summaryrefslogtreecommitdiff
path: root/lib/backup/terraform_state.rb
blob: 5f71e18f1b42fa6b6a6f9e19d733a0ff2d20b957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Backup
  class TerraformState < Backup::Files
    attr_reader :progress

    def initialize(progress)
      @progress = progress

      super('terraform_state', Settings.terraform_state.storage_path, excludes: ['tmp'])
    end
  end
end