This is a bug in AWS::AutoScaling::AutoScalingGroup
The resource AWS::AutoScaling::AutoScalingGroup is not sending "AcceleratorCount" in the CreateAutoScalingGroupAPI Call. Due to which the Property is not set on the AutoScalingGroup resource.
You can also check the output of describe-auto-scaling-groups CLI Call which will show that the AcceleratorCount is not set on the ASG Resource.
Expected Behavior
AcceleratorCount should be set on the ASG, currently it's not set by CFN.
Observed Behavior
After deploying the above template, if you see the CreateAutoScalingGroup API, there you will see that CFN isn't passing AcceleratorCount.
From the test case template only the below parameters are passed on the API Call.
Name of the resource
AWS::AutoScaling::AutoScalingGroup
Resource Name
No response
Issue Description
This is a bug in
AWS::AutoScaling::AutoScalingGroup
The resource
AWS::AutoScaling::AutoScalingGroup
is not sending "AcceleratorCount" in theCreateAutoScalingGroup
API Call. Due to which the Property is not set on the AutoScalingGroup resource.You can also check the output of
describe-auto-scaling-groups
CLI Call which will show that theAcceleratorCount
is not set on the ASG Resource.Expected Behavior
AcceleratorCount
should be set on the ASG, currently it's not set by CFN.Observed Behavior
After deploying the above template, if you see the
CreateAutoScalingGroup
API, there you will see that CFN isn't passingAcceleratorCount
.From the test case template only the below parameters are passed on the API Call.
Test Cases
For example, try deploying the below template which has AcceleratorCount as override
Other Details
No response