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

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

module Terraform
  class StatePolicy < BasePolicy
    alias_method :terraform_state, :subject

    delegate { terraform_state.project }
  end
end