Sha256: 39b55012c82fc7fd2a0a6b2f726a1ea75d1c8d5fcf354db21d79a734f472c305

Contents?: true

Size: 671 Bytes

Versions: 1

Compression:

Stored size: 671 Bytes

Contents

# frozen_string_literal: true

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

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

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

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

    module Commands
      class Show < Base
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
terradactyl-terraform-0.13.0 lib/terradactyl/terraform/commands/show.rb