Sha256: 1abffdadd34918261a3418b496d63f18c4b784b49bbe644bb07f46dab74b66d2
Contents?: true
Size: 984 Bytes
Versions: 3
Compression:
Stored size: 984 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] || {} var_file = opts[:var_file] 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('-var-file', var_file) if var_file 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-terraform-0.10.0 | lib/ruby_terraform/commands/plan.rb |
ruby-terraform-0.9.0 | lib/ruby_terraform/commands/plan.rb |
ruby-terraform-0.8.0 | lib/ruby_terraform/commands/plan.rb |