Sha256: b30619bf8dbe71c8327dbd4ab3d30bdf89138faf23c1a1998a65a1fbd79388fb

Contents?: true

Size: 826 Bytes

Versions: 30

Compression:

Stored size: 826 Bytes

Contents

# frozen_string_literal: true

require_relative 'base'
require_relative '../options/global'

module RubyTerraform
  module Commands
    # Wraps the +terraform workspace show+ command which shows the name of the
    # current workspace.
    #
    # For options accepted on construction, see {#initialize}.
    #
    # When executing an instance of {WorkspaceSelect} 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::WorkspaceShow.new.execute
    #
    class WorkspaceShow < Base
      include RubyTerraform::Options::Global

      # @!visibility private
      def subcommands
        %w[workspace show]
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
ruby-terraform-1.6.0.pre.4 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.6.0.pre.3 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.6.0.pre.2 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.6.0.pre.1 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0.pre.5 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0.pre.4 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0.pre.3 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0.pre.2 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.5.0.pre.1 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0.pre.5 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0.pre.4 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0.pre.3 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0.pre.2 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.4.0.pre.1 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.3.1 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.3.0 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.3.0.pre.3 lib/ruby_terraform/commands/workspace_show.rb
ruby-terraform-1.3.0.pre.2 lib/ruby_terraform/commands/workspace_show.rb