3
4
5
6
7
8
9
10
11
12
13
|
# File 'lib/lono/set_instances/update.rb', line 3
def perform(options)
cfn.update_stack_instances(options)
rescue Aws::CloudFormation::Errors::StackInstanceNotFoundException => e
puts "#{e.class}: #{e.message}".color(:red)
puts " One of the provided stack instance was not found. Unable to update the stack instances unless all stack instances\n already exist. It may be helpful to check the StackSet console Instances Tab. You can also use the\n `lono set_instances deploy` command instead.\n EOL\n exit 1\nend\n"
|