Skip to content

Commit

Permalink
Adding service name in formatting for stack name
Browse files Browse the repository at this point in the history
  • Loading branch information
numcys committed Nov 4, 2024
1 parent bb5631e commit 1baf722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/aws/processes.go
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ func (p *Provider) generateTaskDefinition2(app, service string, opts structs.Pro
}
}

td, err := p.stackResource(fmt.Sprintf("%s-%s", p.Rack, app), "ServiceWeb")
td, err := p.stackResource(fmt.Sprintf("%s-%s", p.Rack, app), fmt.Sprintf("Service-%s",service))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 1baf722

Please sign in to comment.