Amazon Beanstalk Remote User AMI id

I used custom AMI for my beanstalk environment. Then I deleted it and now I can’t access the environment. But the worst is that I can not delete this env! How can i do this? Please help! ERROR: Configuration check exception: cannot find the root device name for the ami-00e96bXX image.

+4
source share
2 answers

We had the same problem, to remove it, I used AWS PowerShell tools.

Get-EBEnvironment | Where EnvironmentName -like "Your environment" |Select EnvironmentId

Stop-EBEnvironment -EnvironmentId xxxx

You can also use -EnvironmentName, although when checking with WhatIf it was empty, so I used EnvironmentId.

+4

CLI AWS.

aws elasticbeanstalk terminate-environment --environment-name "Your environment Name"

+1

All Articles