Sha256: eed4df6997118f5bf240bfc1fc87f653a3438c618f6fda8293d25c2df6977c94

Contents?: true

Size: 733 Bytes

Versions: 15

Compression:

Stored size: 733 Bytes

Contents

# frozen_string_literal: true

module Terradactyl
  module Terraform
    module Subcommands
      module Show
        def defaults
          {
            'json' => false,
            'no-color' => false
          }
        end

        def switches
          %w[
            json
            no-color
          ]
        end
      end
    end

    module Rev011
      include Terradactyl::Terraform::Subcommands::Show

      module Show
        def defaults
          {
            'module-depth' => -1,
            'no-color' => false
          }
        end

        def switches
          %w[
            no-color
          ]
        end
      end
    end

    module Commands
      class Show < Base
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
terradactyl-terraform-1.8.2 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.8.1 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.8.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.7.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.6.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.5.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.4.1 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.4.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.3.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.2.1 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.2.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.1.2 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.1.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-1.0.0 lib/terradactyl/terraform/commands/show.rb
terradactyl-terraform-0.15.0 lib/terradactyl/terraform/commands/show.rb