Skip to content

Commit

Permalink
Merge branch 'add-tag-support' into 'master'
Browse files Browse the repository at this point in the history
Enable tags to be specified in ELBV2 input

Closes #1

See merge request !7
  • Loading branch information
bigkraig committed Mar 1, 2017
2 parents 3fdaf26 + 2b65a28 commit 45fac13
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/cmd/controller/elbv2.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ func (elb *ELBV2) createALB(a *albIngress) error {
}

albParams := &elbv2.CreateLoadBalancerInput{
Name: aws.String(a.Name()),
Subnets: a.annotations.subnets,
Scheme: a.annotations.scheme,
// Tags: a.annotations.tags,
Name: aws.String(a.Name()),
Subnets: a.annotations.subnets,
Scheme: a.annotations.scheme,
Tags: a.annotations.tags,
SecurityGroups: a.annotations.securityGroups,
}

Expand Down

0 comments on commit 45fac13

Please sign in to comment.