module Devops module Model class StackOpenstack < StackBase def initialize attr={} self.provider = 'openstack' super(attr) end def stack_status details[:stack_status] || details['stack_status'] if details end def self.provider 'openstack' end end end end