-
Notifications
You must be signed in to change notification settings - Fork 0
/
elb.go
167 lines (133 loc) · 4.05 KB
/
elb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package certutils
import (
"fmt"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/elb"
"github.com/olekukonko/tablewriter"
)
type ELB struct {
client *elb.ELB
}
type ELBDescription struct {
name string
dnsname string
certs []ELBCertificate
}
type ELBCertificate struct {
arn string
port int64
}
func NewELB(sess *session.Session) *ELB {
return &ELB{
client: elb.New(sess),
}
}
func (e *ELB) getDescriptions(marker string, certFilter string) ([]ELBDescription, error) {
input := &elb.DescribeLoadBalancersInput{}
out, err := e.client.DescribeLoadBalancers(input)
descs := make([]ELBDescription, 0, len(out.LoadBalancerDescriptions))
for _, desc := range out.LoadBalancerDescriptions {
elbdesc := ELBDescription{}
elbdesc.dnsname = *desc.DNSName
elbdesc.name = *desc.LoadBalancerName
for _, ld := range desc.ListenerDescriptions {
l := ld.Listener
certArn := aws.StringValue(l.SSLCertificateId)
if certArn != "" {
if certFilter != "" && certArn != certFilter {
continue
}
elbcert := ELBCertificate{
arn: certArn,
port: *l.LoadBalancerPort,
}
elbdesc.certs = append(elbdesc.certs, elbcert)
}
}
if len(elbdesc.certs) < 1 {
continue
}
descs = append(descs, elbdesc)
}
return descs, err
}
func (e *ELB) List(certFilter string) ([]ELBDescription, error) {
return e.getDescriptions("", certFilter)
}
func createELBSetLoadBalancerListenerSSLCertificateInput(name string, port int64, certArn string) *elb.SetLoadBalancerListenerSSLCertificateInput {
input := &elb.SetLoadBalancerListenerSSLCertificateInput{}
input.SetLoadBalancerName(name)
input.SetLoadBalancerPort(port)
input.SetSSLCertificateId(certArn)
return input
}
func (e *ELB) getLB(name string) (*elb.DescribeLoadBalancersOutput, error) {
input := &elb.DescribeLoadBalancersInput{}
names := []string{name}
input.SetLoadBalancerNames(aws.StringSlice(names))
return e.client.DescribeLoadBalancers(input)
}
func getListenerCertificateByPort(out *elb.DescribeLoadBalancersOutput, port int64) (string, error) {
for _, desc := range out.LoadBalancerDescriptions {
for _, ld := range desc.ListenerDescriptions {
l := ld.Listener
if *l.LoadBalancerPort == port {
return *l.SSLCertificateId, nil
}
}
}
return "", fmt.Errorf("Listener not found")
}
func (e *ELB) Update(name string, port int64, certArn string) (string, error) {
lb, err := e.getLB(name)
if err != nil {
return "", err
}
destCert, err := getListenerCertificateByPort(lb, port)
if err != nil {
return "", err
}
_, err = e.client.SetLoadBalancerListenerSSLCertificate(createELBSetLoadBalancerListenerSSLCertificateInput(name, port, certArn))
return elbUpdateMsg(name, port, destCert, certArn), err
}
func elbUpdateMsg(name string, port int64, src, dest string) string {
return fmt.Sprintf("Updated %s:%d %s -> %s", name, port, src, dest)
}
func (e *ELB) BulkUpdate(srcCertArn, destCertArn string, dryRun bool) ([]string, error) {
descs, err := e.getDescriptions("", srcCertArn)
if err != nil {
return []string{}, err
}
updates := make([]string, 0)
if dryRun {
updates = append(updates, dryRunMsg()...)
}
for _, desc := range descs {
for _, cert := range desc.certs {
if dryRun {
updates = append(updates, elbUpdateMsg(desc.name, cert.port, srcCertArn, destCertArn))
} else {
_, err := e.client.SetLoadBalancerListenerSSLCertificate(createELBSetLoadBalancerListenerSSLCertificateInput(desc.name, cert.port, destCertArn))
if err != nil {
return []string{}, err
}
updates = append(updates, elbUpdateMsg(desc.name, cert.port, srcCertArn, destCertArn))
}
}
}
return updates, nil
}
func (e *ELB) ReadableList(descs []ELBDescription) {
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Name", "Port", "Listener SSL Certificate"})
table.SetAutoMergeCells(true)
table.SetRowLine(true)
for _, desc := range descs {
for _, cert := range desc.certs {
table.Append([]string{desc.name, fmt.Sprint(cert.port), cert.arn})
}
}
table.Render()
}