1 Answer
- Newest
- Most votes
- Most comments
1
Hello.
When I set "--include-deprecated" and "--include-disabled" in the command options and executed it, the AMI was displayed.
These options allow you to display obsolete or disabled AMIs.
aws ec2 describe-images --owners 679593333241 --filters "Name=name,Values=ACM-For-Nitro-Enclaves*" --region us-west-2 --query 'Images[*].[ImageId]' --output json --include-deprecated --include-disabled
[
[
"ami-05421ae6be0ecba36"
],
[
"ami-01c4415fd6c2f0927"
],
[
"ami-031a76fec7387f3f5"
]
]
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-images.html
You can select an AMI from the marketplace by searching by AMI ID from the EC2 startup screen.
"ami-05421ae6be0ecba36" and "ami-01c4415fd6c2f0927" seemed usable.
Or you may want to install Nitro Enclaves by following the steps in the document below.
https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave-refapp.html
Relevant content
asked 4 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
