I'm following the directions on the Strapi site here: https://strapi.io/documentation/v3.x/plugins/upload.html#using-a-provider
Here is my plugin.js file located at ./config/plugins.js
module.exports = ({ env }) => ({
upload: {
provider: 'aws-s3',
providerOptions: {
accessKeyId: 'id',
secretAccessKey: 'secret',
region: 'us-east-1',
params: {
Bucket: 'bucket',
},
},
}
});
I have strapi-provider-upload-aws-s3 installed:
"dependencies": {
"knex": "<0.20.0",
"pg": "^8.3.2",
"sqlite3": "^5.0.0",
"strapi": "3.1.4",
"strapi-admin": "3.1.4",
"strapi-connector-bookshelf": "3.1.4",
"strapi-plugin-content-manager": "3.1.4",
"strapi-plugin-content-type-builder": "3.1.4",
"strapi-plugin-email": "3.1.4",
"strapi-plugin-upload": "3.1.4",
"strapi-plugin-users-permissions": "3.1.4",
"strapi-provider-upload-aws-s3": "^3.1.4",
"strapi-utils": "3.1.4"
},
But when I go to my admin page on my local then go to plugins, I do not see a cog in the Media Library plugin which would allow me to change the settings.
I'm pretty stuck here, so help would be appreciated. Thank you!