Graviton / ARM?
#21391
-
Hi there, I wonder what is the proper combination to use a AWS Graviton Processor for an EC2 Instance. This seems not to work:
Any help will be appreciated.... |
Beta Was this translation helpful? Give feedback.
Answered by
jumic
Jul 31, 2022
Replies: 2 comments 1 reply
-
Graviton uses the Arm architecture. Please add property // Graviton 3 Processor
new ec2.Instance(this, 'Instance5', {
vpc,
instanceType: ec2.InstanceType.of(ec2.InstanceClass.C7G, ec2.InstanceSize.LARGE),
machineImage: new ec2.AmazonLinuxImage({
generation: ec2.AmazonLinuxGeneration.AMAZON_LINUX_2,
cpuType: ec2.AmazonLinuxCpuType.ARM_64,
}),
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Pinny3
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Graviton uses the Arm architecture. Please add property
cpuType
to use an Arm-based version of the machine image: