class Terraspace::CLI::State

Public Instance Methods

run() click to toggle source
# File lib/terraspace/cli/state.rb, line 3
def run
  @name = "state #{@options[:subcommand]}" # command name. IE: state list
  Terraspace::Builder.new(@options).run
  Init.new(@options).run
  Terraspace::Terraform::Runner.new(@name, @options).run
end