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

Merge pull request #3447 from bzwei/resource_options

Pass options when get resources from a stack
This commit is contained in:
Wesley Beary 2015-02-19 16:09:33 -06:00
commit d023ee520b

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={})