タグ名よりEC2インスタンスを起動する
require File.expand_path(File.dirname(__FILE__) + '/../samples_config') instances = AWS::EC2.new.instances # p instances instances.each { |i| puts i.id + " " + (i.ip_address ? i.ip_address : "") + " " + (i.tags["Name"] ? i.tags["Name"] : "") + " " + (i.status ? i.status.to_s : "") }
rubyの+はよろしくやってくれないのですねぇ。。。