kibana/tasks/config/s3.js
Spencer 2f6654bcec [eslint] re-enable no-var and prefer-const (#9455)
* [eslint] enable no-var and autofix

* [eslint] enable prefer-const and autofix

* [eslint] fix autofix-incompatible no-var and prefer-const violations
2016-12-13 10:44:27 -07:00

12 lines
193 B
JavaScript

module.exports = function (grunt) {
const { config } = grunt;
return {
release: {
bucket: 'download.elasticsearch.org',
access: 'private',
debug: false
}
};
};