lib/bora/template.rb in bora-1.6.0 vs lib/bora/template.rb in bora-1.7.0

- old
+ new

@@ -2,13 +2,14 @@ require 'hashie' class Bora class Template # These are properties that you can define on the template, but which can also be defined and overriden in the stack - INHERITABLE_PROPERTIES = %w(capabilities default_region tags) + INHERITABLE_PROPERTIES = %w(capabilities default_region tags on_failure disable_rollback).freeze + # These are properties that can be passed in from the command line to override what's defined inthe stack - OVERRIDABLE_PROPERTIES = %w(cfn_stack_name) + OVERRIDABLE_PROPERTIES = %w(cfn_stack_name).freeze def initialize(template_name, template_config, override_config = {}) @template_name = template_name @template_config = template_config @stacks = {}