class Humidifier::Stack::UploadNotConfiguredError

Public Class Methods

new(identifier) click to toggle source
Calls superclass method
# File lib/humidifier/stack.rb, line 24
      def initialize(identifier)
        super(<<~MSG)
          The #{identifier} stack's body is too large to be use the
          template_body option, and therefore must use the template_url option
          instead. You can configure Humidifier to do this automatically by
          setting up the s3 config on the top-level Humidifier object like so:

              Humidifier.configure do |config|
                config.s3_bucket = 'my.s3.bucket'
                config.s3_prefix = 'my-prefix/' # optional
              end
        MSG
      end