debian-mirror-gitlab/app/models/terraform/state_version.rb

26 lines
761 B
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# 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
2021-01-29 00:20:46 +05:30
belongs_to :build, class_name: 'Ci::Build', optional: true, foreign_key: :ci_build_id
2020-11-24 15:15:51 +05:30
scope :ordered_by_version_desc, -> { order(version: :desc) }
2021-02-22 17:27:13 +05:30
default_value_for(:file_store) { StateUploader.default_store }
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
mount_file_store_uploader StateUploader
2020-11-24 15:15:51 +05:30
delegate :project_id, :uuid, to: :terraform_state, allow_nil: true
2021-01-03 14:25:43 +05:30
def local?
file_store == ObjectStorage::Store::LOCAL
end
2020-11-24 15:15:51 +05:30
end
end
2021-01-03 14:25:43 +05:30
Terraform::StateVersion.prepend_if_ee('EE::Terraform::StateVersion')