Welcome to mirror list, hosted at ThFree Co, Russian Federation.

state_version.rb « terraform « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5e315d18a151c7823bd87cc68bb03148d703d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Terraform
  class StateVersion < ApplicationRecord
    include FileStoreMounter

    belongs_to :terraform_state, class_name: 'Terraform::State', optional: false
    belongs_to :created_by_user, class_name: 'User', optional: true

    scope :ordered_by_version_desc, -> { order(version: :desc) }

    default_value_for(:file_store) { VersionedStateUploader.default_store }

    mount_file_store_uploader VersionedStateUploader

    delegate :project_id, :uuid, to: :terraform_state, allow_nil: true
  end
end