fluke/devops-service/db/mongo/models/stack/stack_ec2.rb
2015-08-17 17:50:24 +03:00

17 lines
245 B
Ruby

module Devops
module Model
class StackEc2 < StackBase
def initialize attr={}
self.provider = 'ec2'
super(attr)
end
def stack_status
details['StackStatus'] if details
end
end
end
end