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.
To check whether AMD SEV-SNP is enabled for an instance using the AWS CLI, use the
describe-instances--instance-ids
,
specify the ID of the instance to check.
$
aws ec2 describe-instances --instance-idsinstance_id
In the command output, the value for AmdSevSnp
in CpuOptions
indicates whether AMD SEV-SNP is enabled or disabled.