mirror of https://github.com/docker/compose.git
add SO link for issue if listener is not in service dependencies
Signed-off-by: aiordache <anca.iordache@docker.com> Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
ae3101fe12
commit
92173eaf35
|
@ -236,6 +236,8 @@ func (c client) Convert(project *compose.Project) (*cloudformation.Template, err
|
|||
strings.ToUpper(port.Protocol),
|
||||
string(port.Published),
|
||||
)
|
||||
//add listener to dependsOn
|
||||
//https://stackoverflow.com/questions/53971873/the-target-group-does-not-have-an-associated-load-balancer
|
||||
dependsOn = append(dependsOn, listenerName)
|
||||
template.Resources[listenerName] = &elasticloadbalancingv2.Listener{
|
||||
DefaultActions: []elasticloadbalancingv2.Listener_Action{
|
||||
|
|
Loading…
Reference in New Issue