mirror of https://github.com/docker/compose.git
NLB don't support securityGroups
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
parent
60bd0e5303
commit
481e069b2e
|
@ -217,9 +217,15 @@ func (b *ecsAPIService) ensureLoadBalancer(r *awsResources, project *types.Proje
|
||||||
}
|
}
|
||||||
|
|
||||||
balancerType := getRequiredLoadBalancerType(project)
|
balancerType := getRequiredLoadBalancerType(project)
|
||||||
|
var securityGroups []string
|
||||||
|
if balancerType == elbv2.LoadBalancerTypeEnumApplication {
|
||||||
|
// see https://docs.aws.amazon.com/elasticloadbalancing/latest/network/target-group-register-targets.html#target-security-groups
|
||||||
|
// Network Load Balancers do not have associated security groups
|
||||||
|
securityGroups = r.getLoadBalancerSecurityGroups(project)
|
||||||
|
}
|
||||||
template.Resources["LoadBalancer"] = &elasticloadbalancingv2.LoadBalancer{
|
template.Resources["LoadBalancer"] = &elasticloadbalancingv2.LoadBalancer{
|
||||||
Scheme: elbv2.LoadBalancerSchemeEnumInternetFacing,
|
Scheme: elbv2.LoadBalancerSchemeEnumInternetFacing,
|
||||||
SecurityGroups: r.getLoadBalancerSecurityGroups(project),
|
SecurityGroups: securityGroups,
|
||||||
Subnets: r.subnets,
|
Subnets: r.subnets,
|
||||||
Tags: projectTags(project),
|
Tags: projectTags(project),
|
||||||
Type: balancerType,
|
Type: balancerType,
|
||||||
|
|
Loading…
Reference in New Issue