Sha256: 3699f90caeaeb4c81dd180f259fe10012b1a9dff88ccbaa3c28031871c2526e0

Contents?: true

Size: 391 Bytes

Versions: 5

Compression:

Stored size: 391 Bytes

Contents

# frozen_string_literal: true

require_relative 'base'
require_relative '../options/common'

module RubyTerraform
  module Commands
    class Graph < Base
      include RubyTerraform::Options::Common

      def subcommands
        %w[graph]
      end

      def options
        %w[
          -draw-cycles
          -type
          -module-depth
        ] + super
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ruby-terraform-0.65.0.pre.14 lib/ruby_terraform/commands/graph.rb
ruby-terraform-0.65.0.pre.13 lib/ruby_terraform/commands/graph.rb
ruby-terraform-0.65.0.pre.12 lib/ruby_terraform/commands/graph.rb
ruby-terraform-0.65.0.pre.11 lib/ruby_terraform/commands/graph.rb
ruby-terraform-0.65.0.pre.10 lib/ruby_terraform/commands/graph.rb