Closed wagnerone closed 1 month ago
Voting for Prioritization
Volunteering to Work on This Issue
What is the next step to get some traction on this request? Thanks!
Hey @wagnerone 👋 Thanks for checking in here! We base our prioritization on the count of :+1: reactions and a few other considerations (more information: prioritization guide).
@justinretzolk Thank you for that extra info. I'll sit tight for now.
Hello,
In the AWS web console, it's possible to select several target groups.
But it's not possible to do this with the "aws_codedeploy_deployment_group" terraform resource.
Regards,
I have verified that you can configured multiple target groups on the aws_codedeploy_deployment_group
resource:
load_balancer_info {
target_group_info {
name = "acc-test-codedeploy-dep-group-1"
}
target_group_info {
name = "acc-test-codedeploy-dep-group-2"
}
target_group_info {
name = "acc-test-codedeploy-dep-group-3"
}
}
[!WARNING] This issue has been closed, meaning that any additional comments are hard for our team to see. Please assume that the maintainers will not see them.
Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed.
This functionality has been released in v5.73.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.
For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Description
A few months ago AWS announced the ability to manage targets in multiple ALB target groups when doing a CodeDeploy in-place deployment. Currently the provider only manages a single ALB target group for
aws_codedeploy_deployment_group
. Please enhance it to manage multiple ALB target groups.Affected Resource(s) and/or Data Source(s)
aws_codedeploy_deployment_group
Potential Terraform Configuration
References
Would you like to implement a fix?
None