1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Pass options when get resources from a stack

This commit is contained in:
Bill Wei 2015-02-19 16:03:51 -05:00
parent 9e197b76a3
commit 7ac64e6ad6

View file

@ -48,8 +48,8 @@ module Fog
@details ||= service.stacks.get(self.stack_name, self.id)
end
def resources
@resources ||= service.resources.all(self)
def resources(options={})
@resources ||= service.resources.all(self, options)
end
def events(options={})