From 9776ce1167318a1789d5e2e3982c39de09f161a0 Mon Sep 17 00:00:00 2001 From: Julian Michel Date: Thu, 12 Aug 2021 21:16:04 +0000 Subject: [PATCH 1/2] fix(autoscaling): EbsDeviceVolumeType.IO2 is not a valid CloudFormation value --- packages/@aws-cdk/aws-autoscaling/lib/volume.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/@aws-cdk/aws-autoscaling/lib/volume.ts b/packages/@aws-cdk/aws-autoscaling/lib/volume.ts index b22bb2c98e3f8..cbe08bac7c6ab 100644 --- a/packages/@aws-cdk/aws-autoscaling/lib/volume.ts +++ b/packages/@aws-cdk/aws-autoscaling/lib/volume.ts @@ -182,11 +182,6 @@ export enum EbsDeviceVolumeType { */ IO1 = 'io1', - /** - * Provisioned IOPS SSD - IO2 - */ - IO2 = 'io2', - /** * General Purpose SSD - GP2 */ From 15d7ef79fc54a67d8d1a2d4be586517fc72cc6df Mon Sep 17 00:00:00 2001 From: Julian Michel Date: Sat, 14 Aug 2021 13:11:29 +0000 Subject: [PATCH 2/2] insert change to breaking changes --- allowed-breaking-changes.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/allowed-breaking-changes.txt b/allowed-breaking-changes.txt index 47f19a6719d17..6def9776b6dc9 100644 --- a/allowed-breaking-changes.txt +++ b/allowed-breaking-changes.txt @@ -74,3 +74,7 @@ removed:@aws-cdk/aws-stepfunctions-tasks.BatchSubmitJobProps.jobDefinition strengthened:@aws-cdk/aws-stepfunctions-tasks.BatchSubmitJobProps removed:@aws-cdk/aws-lambda-event-sources.ManagedKafkaEventSourceProps.cluster strengthened:@aws-cdk/aws-lambda-event-sources.ManagedKafkaEventSourceProps + +# Remove IO2 from autoscaling EbsDeviceVolumeType. This value is not supported +# at the moment and was not supported in the past. +removed:@aws-cdk/aws-autoscaling.EbsDeviceVolumeType.IO2 \ No newline at end of file