in lib/aws-rails-provisioner/db_cluster.rb [260:271]
def _engine_type(engine)
type = engine.dup
case type.downcase
when 'aurora-postgresql' then 'AURORA_POSTGRESQL'
when 'aurora-mysql' then 'AURORA_MYSQL'
when 'aurora' then 'AURORA'
else
msg = "DB engine: #{engine.inspect} not supported"
raise Aws::RailsProvisioner::Errors::ValidationError, msg
end
end