2 Answers
- Newest
- Most votes
- Most comments
0
Hello,
You can updating your policy with the actions from this gist and then try to execute update environment.
https://gist.github.com/RobertoSchneiders/c9ee659cc5a565642fd9
Elastic Beanstalk IAM References:
0
Verify IAM User/Role Permissions: Ensure the IAM user or role has the necessary permissions. The minimal policy for updating an environment might look like this:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"elasticbeanstalk:UpdateEnvironment",
"elasticbeanstalk:DescribeEnvironments",
"elasticbeanstalk:DescribeEvents"
],
"Resource": "*"
}
]
}
answered 2 years ago

no, it didn't work