module Sfn::CommandModule::Template
Template
handling helper methods
Constants
- DEFAULT_PROVIDER_NAME
default provider used when credentials are unset
- MAX_PARAMETER_ATTEMPTS
maximum number of attempts to get valid parameter value
- TEMPLATE_IGNORE_DIRECTORIES
cloudformation directories that should be ignored
Public Class Methods
included(klass)
click to toggle source
Load methods into class and define options
@param klass [Class]
# File lib/sfn/command_module/template.rb, line 620 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 include Sfn::Utils::StackParameterValidator end end