-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
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
ServerDeploymentGroup in Code deploy is accepting List of AutoScalingGroup instead of List of IAutoScalingGroup #9175
Labels
@aws-cdk/aws-codedeploy
Related to AWS CodeDeploy
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
p1
Comments
skinny85
added
@aws-cdk/aws-codedeploy
Related to AWS CodeDeploy
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
p1
labels
Jul 20, 2020
Can we expect this in near future? |
I'll try to work on this today @mohdarshad . |
skinny85
added a commit
to skinny85/aws-cdk
that referenced
this issue
Jul 24, 2020
… of IAutoScalingGroup Fixes aws#9175
Will it available anytime soon? |
skinny85
added a commit
to skinny85/aws-cdk
that referenced
this issue
Aug 6, 2020
… of IAutoScalingGroup Fixes aws#9175
skinny85
added a commit
to skinny85/aws-cdk
that referenced
this issue
Aug 7, 2020
… of IAutoScalingGroup Fixes aws#9175
skinny85
added a commit
to skinny85/aws-cdk
that referenced
this issue
Aug 8, 2020
… of IAutoScalingGroup Fixes aws#9175
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
@aws-cdk/aws-codedeploy
Related to AWS CodeDeploy
effort/small
Small work item – less than a day of effort
feature-request
A feature should be added or improved.
p1
ServerDeploymentGroup in Code deploy is accepting List of AutoScalingGroup instead of IAutoScalingGroup.
There is no way to get hold of reference of a AutoscallingGroup by using its name, rather
AutoScalingGroup.fromAutoScalingGroupName
gives an instance of IAutoScalingGroup, which can not be casted into AutoScalingGroupSo, probably there is an oversight in ServerDeploymentGroup construct. This should most likely accept List of IAutoScalingGroup instead of List of AutoScalingGroup . Kindly confirm.
The text was updated successfully, but these errors were encountered: