1 Elastic Beanstalk

1.1 Elastic Load Balancer

“single-instance” environments can be configured in “load-balancing environment” configurations.

1.2 Application log accss from

.ebextensions
   applog.config
files:
  "/opt/python/log/application.log" :
   mode: "000666"
   owner: ec2-user
   group: ec2-user
   content: |
       # Askbot log file

1.3 not authorized error for using AWS SES

Error message:

 User `arn:aws:sts::xxxxx:assumed-role/aws-elasticbeanstalk-ec2-role/i-xxxx' is not authorized to perform `ses:SendEmail' on resource `arn:aws:ses:eu-west-1:xxxx:identity/xxxx@gmail.com'

Solution:

go to -> Identity and Access Management (IAM) -> Attach policies -> add AmazonSESFullAccess

Home Page