Cannot create elastic beanstalk environment correctly.

0

I have read the document: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/iam-instanceprofile.html

And I have created the role aws-elasticbeanstalk-ec2-role and add the policies: AWSElasticBeanstalkWebTier, AWSElasticBeanstalkWorkerTier, AWSElasticBeanstalkMulticontainerDocker. But the error still occurs. See the screenshots. Enter image description here Enter image description here Enter image description here Enter image description here

Basically, I am following the docker tutorial steps here: https://docker-curriculum.com/#docker-on-aws

asked 10 months ago232 views
2 Answers
0

For service role you need this as trusted entity (can be without conditions):

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "elasticbeanstalk.amazonaws.com"
            },
            "Action": "sts:AssumeRole",
            "Condition": {
                "StringEquals": {
                    "sts:ExternalId": "elasticbeanstalk"
                }
            }
        }
    ]
}

And add this managed policy as a policy: AWSElasticBeanstalkManagedUpdatesCustomerRolePolicy

For EC2 instance role you need this as trusted entity, also add needed permissions.

{
    "Version": "2008-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "ec2.amazonaws.com"
            },
            "Action": "sts:AssumeRole"
        }
    ]
}
profile picture
answered 10 months ago
profile pictureAWS
EXPERT
iBehr
reviewed 10 months ago
0

okay... I finally figure it out. I didn't select an EC2 instance profile. After I added that, there is no error.

answered 10 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions