Skip to content

Commit

Permalink
deployment_group_name name suffix fix
Browse files Browse the repository at this point in the history
  • Loading branch information
msaaditoluna committed Dec 27, 2022
1 parent 874091a commit ddce3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/codedeploy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "aws_codedeploy_app" "codedeploy_app" {
resource "aws_codedeploy_deployment_group" "deployment_group" {
app_name = aws_codedeploy_app.codedeploy_app.name
deployment_config_name = "CodeDeployDefault.ECSAllAtOnce"
deployment_group_name = "ecs-deploy-group-${var.env_name}"
deployment_group_name = "ecs-deploy-group-${var.app_name}-${var.env_name}"
service_role_arn = aws_iam_role.codedeploy_role.arn

auto_rollback_configuration {
Expand Down

0 comments on commit ddce3d3

Please sign in to comment.