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