Skip to content

Commit 45fac13

Browse files
author
bigkraig
committed
Merge branch 'add-tag-support' into 'master'
Enable tags to be specified in ELBV2 input Closes #1 See merge request !7
2 parents 3fdaf26 + 2b65a28 commit 45fac13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/cmd/controller/elbv2.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ func (elb *ELBV2) createALB(a *albIngress) error {
134134
}
135135

136136
albParams := &elbv2.CreateLoadBalancerInput{
137-
Name: aws.String(a.Name()),
138-
Subnets: a.annotations.subnets,
139-
Scheme: a.annotations.scheme,
140-
// Tags: a.annotations.tags,
137+
Name: aws.String(a.Name()),
138+
Subnets: a.annotations.subnets,
139+
Scheme: a.annotations.scheme,
140+
Tags: a.annotations.tags,
141141
SecurityGroups: a.annotations.securityGroups,
142142
}
143143

0 commit comments

Comments
 (0)