Sha256: 94f640cea7dca76fbcf770e80d16370e7bd31dd66463f3504565cabf83786a45

Contents?: true

Size: 877 Bytes

Versions: 4

Compression:

Stored size: 877 Bytes

Contents

require 'lino'
require_relative 'base'

module RubyTerraform
  module Commands
    class Plan < Base
      def configure_command(builder, opts)
        directory = opts[:directory]
        vars = opts[:vars] || {}
        state = opts[:state]
        plan = opts[:plan]
        destroy = opts[:destroy]
        no_color = opts[:no_color]

        builder
            .with_subcommand('plan') do |sub|
              vars.each do |key, value|
                sub = sub.with_option('-var', "'#{key}=#{value}'", separator: ' ')
              end
              sub = sub.with_option('-state', state) if state
              sub = sub.with_option('-out', plan) if plan
              sub = sub.with_flag('-destroy') if destroy
              sub = sub.with_flag('-no-color') if no_color
              sub
            end
            .with_argument(directory)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-terraform-0.7.0 lib/ruby_terraform/commands/plan.rb
ruby-terraform-0.6.0 lib/ruby_terraform/commands/plan.rb
ruby-terraform-0.5.1 lib/ruby_terraform/commands/plan.rb
ruby-terraform-0.5.0 lib/ruby_terraform/commands/plan.rb