Module: Sfn::CommandModule::Template

Overview

Template handling helper methods

Defined Under Namespace

Modules: ClassMethods, InstanceMethods

Constant Summary collapse

TEMPLATE_IGNORE_DIRECTORIES =

cloudformation directories that should be ignored

%w(components dynamics registry)
MAX_PARAMETER_ATTEMPTS =

maximum number of attempts to get valid parameter value

5

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object

Load methods into class and define options

Parameters:

  • klass (Class)


579
580
581
582
583
584
585
586
# File 'lib/sfn/command_module/template.rb', line 579

def self.included(klass)
  klass.class_eval do
    extend Sfn::CommandModule::Template::ClassMethods
    include Sfn::CommandModule::Template::InstanceMethods
    include Sfn::Utils::PathSelector
    include Sfn::Utils::StackParameterScrubber
   end
end