17 lines
245 B
Ruby
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
|