Sha256: 73a9719fce4f0619ff2410aadf171efd40f78de8d271d1ab05f6622a9a261b58

Contents?: true

Size: 772 Bytes

Versions: 1

Compression:

Stored size: 772 Bytes

Contents

# frozen_string_literal: true

module Terradactyl
  module Terraform
    module Rev011
      module Validate
        def defaults
          {
            'check-variables' => true,
            'no-color' => false,
            # 'var'             => [], # not implemented
            'var-file' => nil
          }
        end

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

    module Rev012
      module Validate
        def defaults
          {
            'no-color' => nil,
            'json' => nil
          }
        end

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

    module Commands
      class Validate < 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/validate.rb