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

已提问 1 年前246 查看次数
2 回答
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
已回答 1 年前
profile pictureAWS
专家
iBehr
已审核 1 年前
0

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

已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则