1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/aws/requests/cloud_formation/update_stack.rb
2011-10-18 10:06:35 -04:00

62 lines
2.1 KiB
Ruby

module Fog
module AWS
class CloudFormation
class Real
require 'fog/aws/parsers/cloud_formation/update_stack'
# Update a stack
#
# ==== Parameters
# * stack_name<~String>: name of the stack to update
# * options<~Hash>:
# * TemplateBody<~String>: structure containing the template body
# or (one of the two Template parameters is required)
# * TemplateURL<~String>: URL of file containing the template body
# * Parameters<~Hash>: Hash of providers to supply to template
# * Capabilities<~Array>: List of capabilties the stack is granted. Currently CAPABILITY_IAM
# for allowing the creation of IAM resources
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'StackId'<~String> - Id of the stack being updated
#
# ==== See Also
# http://docs.amazonwebservices.com/AWSCloudFormation/latest/APIReference/API_UpdateStack.html
#
def update_stack(stack_name, options = {})
params = {
'StackName' => stack_name,
}
if options['Parameters']
options['Parameters'].keys.each_with_index do |key, index|
index += 1 # params are 1-indexed
params.merge!({
"Parameters.member.#{index}.ParameterKey" => key,
"Parameters.member.#{index}.ParameterValue" => options['Parameters'][key]
})
end
end
if options['TemplateBody']
params['TemplateBody'] = options['TemplateBody']
elsif options['TemplateURL']
params['TemplateURL'] = options['TemplateURL']
end
if options['Capabilities']
params.merge!(Fog::AWS.indexed_param("Capabilities.member", [*options['Capabilities']]))
end
request({
'Action' => 'UpdateStack',
:parser => Fog::Parsers::AWS::CloudFormation::UpdateStack.new
}.merge!(params))
end
end
end
end
end