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

state_version_policy.rb « terraform « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad0b2f6d5944d07ed421fd5bddd95a06f4a95fa6 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Terraform
  class StateVersionPolicy < BasePolicy
    alias_method :terraform_state_version, :subject

    delegate { terraform_state_version.terraform_state }
  end
end