trentontrees commented on this pull request.
> @@ -429,6 +444,89 @@ public static EC2HardwareBuilder t2_large() { .processors(ImmutableList.of(new Processor(1.0, 0.4))).rootDeviceType(RootDeviceType.EBS); } + /** + * @see InstanceType#T2_XLARGE + */ + public static EC2HardwareBuilder t2_xlarge() { + return new EC2HardwareBuilder(InstanceType.T2_XLARGE).t2() + .ram(16384) + .processors(ImmutableList.of(new Processor(2.0, 0.4))).rootDeviceType(RootDeviceType.EBS); https://aws.amazon.com/it/ec2/instance-types/t2/ I wasn't 100% sure on my values, but i used the existing `t2.large` and `t2.xlarge` as my example space. From the above link I'm seeing `t2.large(vCpu=2)` and `t2.xlarge(vCpu=4)` Should I change all of the t2 processors to match the product detail page? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/1245#discussion_r226093061