data for log

This commit is contained in:
amartynov 2015-08-18 16:23:44 +03:00
parent b13a965fd8
commit 630abbc68b

View File

@ -240,7 +240,10 @@ module Provider
end
def stack_details(stack)
d = cloud_formation.describe_stacks({'StackName' => stack.name}).body['Stacks'][0]['stack']
body = cloud_formation.describe_stacks({'StackName' => stack.name}).body
d = body['Stacks'][0]['stack']
#d = cloud_formation.describe_stacks({'StackName' => stack.name}).body['Stacks'][0]['stack']
puts "Details body: #{body.inspect}"
puts "Details: #{d.inspect}"
end