lib/aws/cfn/compiler/base.rb in aws-cfn-compiler-0.8.7 vs lib/aws/cfn/compiler/base.rb in aws-cfn-compiler-0.8.8
- old
+ new
@@ -82,10 +82,10 @@
hash['Parameters'].each do |par,hsh|
# noinspection RubyStringKeysInHashInspection
parameters << {
'ParameterKey' => par,
'ParameterValue' => hsh.has_key?('Default') ? hsh['Default'] : '',
- 'UsePreviousValue' => false,
+ # 'UsePreviousValue' => false,
}
end
end
if @config[:parametersfile] and parameters.size > 0