initialize

in lib/aws-rails-provisioner/service.rb [6:26]


    def initialize(name, options = {})
      @name = name.to_s 
      @file_path = options[:file_path] || 'aws-rails-provisioner.yml'
      @stack_prefix = _camel_case(@name)
      @path_prefix = _path_prefix(@name)
      @const_prefix = _const_prefix(@stack_prefix)
      @enable_cicd = !!options[:enable_cicd]
      @profile = options[:profile]
      @packages = Set.new

      
      @source_path = options.fetch(:source_path)
      @fargate = options[:fargate] || {}

      @db_cluster = options[:db_cluster]
      @scaling = options[:scaling]

      
      @cicd = options[:cicd] || {}
    end