Sha256: 7f95a9c6020d761352a1b45b41911060eae9f72a1d82981f85331ed107028ec9
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true require_relative 'base' require_relative '../options/common' module RubyTerraform module Commands # Wraps the +terraform providers+ command which prints out a tree of modules # in the referenced configuration annotated with their provider # requirements. # # This provides an overview of all of the provider requirements across all # referenced modules, as an aid to understanding why particular provider # plugins are needed and why particular versions are selected. # # For options accepted on construction, see {#initialize}. # # When executing an instance of {Plan} via {#execute}, the following # options are supported: # # * +:chdir+: the path of a working directory to switch to before executing # the given subcommand. # # @example Basic Invocation # RubyTerraform::Commands::Providers.new.execute # class Providers < Base include RubyTerraform::Options::Common # @!visibility private def subcommands %w[providers] end # @todo Add directory argument end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-terraform-0.65.0.pre.15 | lib/ruby_terraform/commands/providers.rb |