Check AMD SEV-SNP support on Amazon EC2 instances
Topics
Find Amazon EC2 instance types that support AMD SEV-SNP
You can use the AWS CLI to find instance types that support AMD SEV-SNP.
To find the instance types that support AMD SEV-SNP using the AWS CLI, use the
following describe-instance-types
$
aws ec2 describe-instance-types \ --filters Name=processor-info.supported-features,Values=amd-sev-snp \ --query 'InstanceTypes[*].InstanceType'
Example output.
[ "r6a.2xlarge", "m6a.large", "m6a.2xlarge", "r6a.xlarge", "c6a.16xlarge", "c6a.8xlarge", "m6a.4xlarge", "c6a.12xlarge", "r6a.4xlarge", "c6a.xlarge", ... ]
Check if an Amazon EC2 instance is enabled for AMD SEV-SNP
You can use one of the following methods to check the status of AMD SEV-SNP.