module Awspec::Helper::Finder::Cloudformation
Public Instance Methods
find_cloudformation_stack(id)
click to toggle source
# File lib/awspec/helper/finder/cloudformation.rb, line 4 def find_cloudformation_stack(id) res = cloudformation_client.describe_stacks({ stack_name: id }) res.stacks.single_resource(id) end