Sha256: bc8ecafe337f597f8534be154c7dd1b00298acb9e52517993d53ee6ed134292a

Contents?: true

Size: 1.68 KB

Versions: 2

Compression:

Stored size: 1.68 KB

Contents

require 'trollop'

module SimpleDeploy
  module CLI

    class Instances
      include Shared

      def list
        @opts = Trollop::options do
          version SimpleDeploy::VERSION
          banner <<-EOS

List instances for stack.

simple_deploy instances -n STACK_NAME -e ENVIRONMENT

Using Internal / External IPs

simple_deploy defaults to using the public IP when return the IP for stacks in classic, or the private IP when in a VPC.

The internal or external flag forces simple_deploy to use the given IP address.

simple_deploy instances -n STACK_NAME -n STACK_NAME -e ENVIRONMENT -i

EOS
          opt :help, "Display Help"
          opt :environment, "Set the target environment", :type => :string
          opt :name, "Stack name to manage", :type => :string
          opt :external, "Return external IP for instances."
          opt :internal, "Return internal IP for instances."
        end

        valid_options? :provided => @opts,
                       :required => [:environment, :name]

        SimpleDeploy.create_config @opts[:environment]
        logger = SimpleDeploy.logger @opts[:log_level]

        stack = Stack.new :name        => @opts[:name],
                          :environment => @opts[:environment],
                          :external    => @opts[:external],
                          :internal    => @opts[:internal]

        exit 1 unless stack.exists?

        instances = stack.instances

        if instances.nil? || instances.empty?
          logger.info "Stack '#{@opts[:name]}' does not have any instances."
        else
          puts stack.instances
        end
      end

      def command_summary
        'List instances for stack'
      end

    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simple_deploy-0.8.1.beta1 lib/simple_deploy/cli/instances.rb
simple_deploy-0.8.0 lib/simple_deploy/cli/instances.rb