[Answered ]-Django ElasticBeanstalk change bucket

2๐Ÿ‘

  1. ElasticBeanstalk creates a S3 bucket named elasticbeanstalk-region-account-id
    for each region you create environment.

Your new django application will not interfere with the other in the same bucket, as it create two different folder of your django environment which has their respective runtime folder having current version files residing here:

bucketName/resources/environments/environmentID/_runtime/_versions
  1. You cannot create new bucket for elasticBeanstalk application, you can delete it by changing its bucket policy.

Hope this helps you!

๐Ÿ‘คDarshika Joshi

Leave a comment