I'm new to using AWS Services and Django together and I'm having trouble finding information around best practices for storing your aws creds for Django to access?
I have a basic django application that's connected to an S3 bucket, so I need to be able to use boto to invoke the connection to the bucket. But I'm not sure how to go about storing the aws credentials I would need to pipe into my boto functions to use any of the services.
I have read in a few places of people putting their aws credentials into the settings.py file within their django project, but this doesn't really feel secure to me. I also looked into AWS Secrets Manager, but it looks to me as though it's more suited for keys related to other services.
Could anyone perhaps explain what my other options are, or why storing them in settings.py is perhaps a safe option?
Really not certain on the best way to go about this one.