We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for region: eu-central-1 according to https://aws.amazon.com/ec2/pricing/on-demand/:
pricing: $0.207
according to aws ec2 describe-instance-types the correct values would be
cpu speed: 3.6
The text was updated successfully, but these errors were encountered:
@DrVanScott at first glance the pricing looks correct. The clock speed is off, which I am investigating.
Sorry, something went wrong.
@EverettBerry Not only the m6a family but also the c6a family seems to exhibit different clock speeds.
$ aws ec2 describe-instance-types --instance-types c6a.large --query "InstanceTypes[].{SustainedClockSpeedInGhz:ProcessorInfo.SustainedClockSpeedInGhz}" [ { "SustainedClockSpeedInGhz": 3.6 } ] $ aws ec2 describe-instance-types --instance-types m6a.large --query "InstanceTypes[].{SustainedClockSpeedInGhz:ProcessorInfo.SustainedClockSpeedInGhz}" [ { "SustainedClockSpeedInGhz": 3.6 } ]
This looks correct now. Can this be closed?
EverettBerry
No branches or pull requests
for region: eu-central-1
according to https://aws.amazon.com/ec2/pricing/on-demand/:
pricing: $0.207
according to aws ec2 describe-instance-types the correct values would be
cpu speed: 3.6
The text was updated successfully, but these errors were encountered: