-
Notifications
You must be signed in to change notification settings - Fork 9.5k
/
Copy pathsweep.go
440 lines (359 loc) · 13.7 KB
/
sweep.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package elasticache
import (
"context"
"fmt"
"log"
"strings"
"time"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/elasticache"
"github.com/hashicorp/go-multierror"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"github.com/hashicorp/terraform-provider-aws/internal/sweep"
"github.com/hashicorp/terraform-provider-aws/internal/sweep/awsv1"
)
// These timeouts are lower to fail faster during sweepers
const (
sweeperGlobalReplicationGroupDisassociationReadyTimeout = 10 * time.Minute
sweeperGlobalReplicationGroupDefaultUpdatedTimeout = 10 * time.Minute
)
func RegisterSweepers() {
resource.AddTestSweepers("aws_elasticache_cluster", &resource.Sweeper{
Name: "aws_elasticache_cluster",
F: sweepClusters,
Dependencies: []string{
"aws_elasticache_replication_group",
},
})
resource.AddTestSweepers("aws_elasticache_global_replication_group", &resource.Sweeper{
Name: "aws_elasticache_global_replication_group",
F: sweepGlobalReplicationGroups,
})
resource.AddTestSweepers("aws_elasticache_parameter_group", &resource.Sweeper{
Name: "aws_elasticache_parameter_group",
F: sweepParameterGroups,
Dependencies: []string{
"aws_elasticache_cluster",
"aws_elasticache_replication_group",
},
})
resource.AddTestSweepers("aws_elasticache_replication_group", &resource.Sweeper{
Name: "aws_elasticache_replication_group",
F: sweepReplicationGroups,
Dependencies: []string{
"aws_elasticache_global_replication_group",
},
})
resource.AddTestSweepers("aws_elasticache_subnet_group", &resource.Sweeper{
Name: "aws_elasticache_subnet_group",
F: sweepSubnetGroups,
Dependencies: []string{
"aws_elasticache_cluster",
"aws_elasticache_replication_group",
},
})
resource.AddTestSweepers("aws_elasticache_user", &resource.Sweeper{
Name: "aws_elasticache_user",
F: sweepUsers,
Dependencies: []string{
"aws_elasticache_user_group",
},
})
resource.AddTestSweepers("aws_elasticache_user_group", &resource.Sweeper{
Name: "aws_elasticache_user_group",
F: sweepUserGroups,
})
}
func sweepClusters(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
var sweeperErrs *multierror.Error
input := &elasticache.DescribeCacheClustersInput{
ShowCacheClustersNotInReplicationGroups: aws.Bool(true),
}
err = conn.DescribeCacheClustersPagesWithContext(ctx, input, func(page *elasticache.DescribeCacheClustersOutput, lastPage bool) bool {
if len(page.CacheClusters) == 0 {
log.Print("[DEBUG] No ElastiCache Replication Groups to sweep")
return false
}
for _, cluster := range page.CacheClusters {
id := aws.StringValue(cluster.CacheClusterId)
log.Printf("[INFO] Deleting ElastiCache Cluster: %s", id)
err := DeleteCacheCluster(ctx, conn, id, "")
if err != nil {
log.Printf("[ERROR] Failed to delete ElastiCache Cache Cluster (%s): %s", id, err)
sweeperErrs = multierror.Append(sweeperErrs, fmt.Errorf("error deleting ElastiCache Cache Cluster (%s): %w", id, err))
}
_, err = WaitCacheClusterDeleted(ctx, conn, id, CacheClusterDeletedTimeout)
if err != nil {
log.Printf("[ERROR] Failed waiting for ElastiCache Cache Cluster (%s) to be deleted: %s", id, err)
sweeperErrs = multierror.Append(sweeperErrs, fmt.Errorf("error deleting ElastiCache Cache Cluster (%s): waiting for completion: %w", id, err))
}
}
return !lastPage
})
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache Cluster sweep for %s: %s", region, err)
return sweeperErrs.ErrorOrNil() // In case we have completed some pages, but had errors
}
if err != nil {
sweeperErrs = multierror.Append(sweeperErrs, fmt.Errorf("Error retrieving ElastiCache Clusters: %w", err))
}
return sweeperErrs.ErrorOrNil()
}
func sweepGlobalReplicationGroups(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
var grgGroup multierror.Group
input := &elasticache.DescribeGlobalReplicationGroupsInput{
ShowMemberInfo: aws.Bool(true),
}
err = conn.DescribeGlobalReplicationGroupsPagesWithContext(ctx, input, func(page *elasticache.DescribeGlobalReplicationGroupsOutput, lastPage bool) bool {
if page == nil {
return !lastPage
}
for _, globalReplicationGroup := range page.GlobalReplicationGroups {
globalReplicationGroup := globalReplicationGroup
grgGroup.Go(func() error {
id := aws.StringValue(globalReplicationGroup.GlobalReplicationGroupId)
disassociationErrors := DisassociateMembers(ctx, conn, globalReplicationGroup)
if disassociationErrors != nil {
return fmt.Errorf("disassociating ElastiCache Global Replication Group (%s) members: %w", id, disassociationErrors)
}
log.Printf("[INFO] Deleting ElastiCache Global Replication Group: %s", id)
err := deleteGlobalReplicationGroup(ctx, conn, id, sweeperGlobalReplicationGroupDefaultUpdatedTimeout, globalReplicationGroupDefaultDeletedTimeout)
if err != nil {
return fmt.Errorf("deleting ElastiCache Global Replication Group (%s): %w", id, err)
}
return nil
})
}
return !lastPage
})
grgErrs := grgGroup.Wait()
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache Global Replication Group sweep for %q: %s", region, err)
return grgErrs.ErrorOrNil() // In case we have completed some pages, but had errors
}
if err != nil {
grgErrs = multierror.Append(grgErrs, fmt.Errorf("listing ElastiCache Global Replication Groups: %w", err))
}
return grgErrs.ErrorOrNil()
}
func sweepParameterGroups(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
err = conn.DescribeCacheParameterGroupsPagesWithContext(ctx, &elasticache.DescribeCacheParameterGroupsInput{}, func(page *elasticache.DescribeCacheParameterGroupsOutput, lastPage bool) bool {
if len(page.CacheParameterGroups) == 0 {
log.Print("[DEBUG] No ElastiCache Parameter Groups to sweep")
return false
}
for _, parameterGroup := range page.CacheParameterGroups {
name := aws.StringValue(parameterGroup.CacheParameterGroupName)
if strings.HasPrefix(name, "default.") {
log.Printf("[INFO] Skipping ElastiCache Cache Parameter Group: %s", name)
continue
}
log.Printf("[INFO] Deleting ElastiCache Parameter Group: %s", name)
_, err := conn.DeleteCacheParameterGroupWithContext(ctx, &elasticache.DeleteCacheParameterGroupInput{
CacheParameterGroupName: aws.String(name),
})
if err != nil {
log.Printf("[ERROR] Failed to delete ElastiCache Parameter Group (%s): %s", name, err)
}
}
return !lastPage
})
if err != nil {
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache Parameter Group sweep for %s: %s", region, err)
return nil
}
return fmt.Errorf("Error retrieving ElastiCache Parameter Group: %w", err)
}
return nil
}
func sweepReplicationGroups(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
sweepResources := make([]sweep.Sweepable, 0)
var errs *multierror.Error
err = conn.DescribeReplicationGroupsPagesWithContext(ctx, &elasticache.DescribeReplicationGroupsInput{}, func(page *elasticache.DescribeReplicationGroupsOutput, lastPage bool) bool {
if len(page.ReplicationGroups) == 0 {
log.Print("[DEBUG] No ElastiCache Replication Groups to sweep")
return !lastPage // in rare cases across API, one page may have empty results but not be last page
}
for _, replicationGroup := range page.ReplicationGroups {
r := ResourceReplicationGroup()
d := r.Data(nil)
if replicationGroup.GlobalReplicationGroupInfo != nil {
d.Set("global_replication_group_id", replicationGroup.GlobalReplicationGroupInfo.GlobalReplicationGroupId)
}
d.SetId(aws.StringValue(replicationGroup.ReplicationGroupId))
sweepResources = append(sweepResources, sweep.NewSweepResource(r, d, client))
}
return !lastPage
})
if err != nil {
errs = multierror.Append(errs, fmt.Errorf("error describing ElastiCache Replication Groups: %w", err))
}
if err = sweep.SweepOrchestrator(ctx, sweepResources); err != nil {
errs = multierror.Append(errs, fmt.Errorf("error sweeping ElastiCache Replication Groups for %s: %w", region, err))
}
// waiting for deletion is not necessary in the sweeper since the resource's delete waits
if awsv1.SkipSweepError(errs.ErrorOrNil()) {
log.Printf("[WARN] Skipping ElastiCache Replication Group sweep for %s: %s", region, errs)
return nil
}
return errs.ErrorOrNil()
}
func sweepSubnetGroups(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
err = conn.DescribeCacheSubnetGroupsPagesWithContext(ctx, &elasticache.DescribeCacheSubnetGroupsInput{}, func(page *elasticache.DescribeCacheSubnetGroupsOutput, lastPage bool) bool {
if len(page.CacheSubnetGroups) == 0 {
log.Print("[DEBUG] No ElastiCache Subnet Groups to sweep")
return false
}
for _, subnetGroup := range page.CacheSubnetGroups {
name := aws.StringValue(subnetGroup.CacheSubnetGroupName)
if name == "default" {
log.Printf("[INFO] Skipping ElastiCache Subnet Group: %s", name)
continue
}
log.Printf("[INFO] Deleting ElastiCache Subnet Group: %s", name)
_, err := conn.DeleteCacheSubnetGroupWithContext(ctx, &elasticache.DeleteCacheSubnetGroupInput{
CacheSubnetGroupName: aws.String(name),
})
if err != nil {
log.Printf("[ERROR] Failed to delete ElastiCache Subnet Group (%s): %s", name, err)
}
}
return !lastPage
})
if err != nil {
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache Subnet Group sweep for %s: %s", region, err)
return nil
}
return fmt.Errorf("Error retrieving ElastiCache Subnet Groups: %w", err)
}
return nil
}
func sweepUsers(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
input := &elasticache.DescribeUsersInput{}
sweepResources := make([]sweep.Sweepable, 0)
err = conn.DescribeUsersPagesWithContext(ctx, input, func(page *elasticache.DescribeUsersOutput, lastPage bool) bool {
if page == nil {
return !lastPage
}
for _, v := range page.Users {
id := aws.StringValue(v.UserId)
if id == "default" {
log.Printf("[INFO] Skipping ElastiCache User: %s", id)
continue
}
r := ResourceUser()
d := r.Data(nil)
d.SetId(id)
sweepResources = append(sweepResources, sweep.NewSweepResource(r, d, client))
}
return !lastPage
})
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache User sweep for %s: %s", region, err)
return nil
}
if err != nil {
return fmt.Errorf("listing ElastiCache Users (%s): %w", region, err)
}
err = sweep.SweepOrchestrator(ctx, sweepResources)
if err != nil {
return fmt.Errorf("sweeping ElastiCache Users (%s): %w", region, err)
}
return nil
}
func sweepUserGroups(region string) error {
ctx := sweep.Context(region)
client, err := sweep.SharedRegionalSweepClient(ctx, region)
if err != nil {
return fmt.Errorf("error getting client: %w", err)
}
conn := client.ElastiCacheConn(ctx)
input := &elasticache.DescribeUserGroupsInput{}
sweepResources := make([]sweep.Sweepable, 0)
err = conn.DescribeUserGroupsPagesWithContext(ctx, input, func(page *elasticache.DescribeUserGroupsOutput, lastPage bool) bool {
if page == nil {
return !lastPage
}
for _, v := range page.UserGroups {
r := ResourceUserGroup()
d := r.Data(nil)
d.SetId(aws.StringValue(v.UserGroupId))
sweepResources = append(sweepResources, sweep.NewSweepResource(r, d, client))
}
return !lastPage
})
if awsv1.SkipSweepError(err) {
log.Printf("[WARN] Skipping ElastiCache User Group sweep for %s: %s", region, err)
return nil
}
if err != nil {
return fmt.Errorf("listing ElastiCache User Groups (%s): %w", region, err)
}
err = sweep.SweepOrchestrator(ctx, sweepResources)
if err != nil {
return fmt.Errorf("sweeping ElastiCache User Groups (%s): %w", region, err)
}
return nil
}
func DisassociateMembers(ctx context.Context, conn *elasticache.ElastiCache, globalReplicationGroup *elasticache.GlobalReplicationGroup) error {
var membersGroup multierror.Group
for _, member := range globalReplicationGroup.Members {
member := member
if aws.StringValue(member.Role) == GlobalReplicationGroupMemberRolePrimary {
continue
}
id := aws.StringValue(globalReplicationGroup.GlobalReplicationGroupId)
membersGroup.Go(func() error {
if err := DisassociateReplicationGroup(ctx, conn, id, aws.StringValue(member.ReplicationGroupId), aws.StringValue(member.ReplicationGroupRegion), sweeperGlobalReplicationGroupDisassociationReadyTimeout); err != nil {
sweeperErr := fmt.Errorf(
"error disassociating ElastiCache Replication Group (%s) in %s from Global Group (%s): %w",
aws.StringValue(member.ReplicationGroupId), aws.StringValue(member.ReplicationGroupRegion), id, err,
)
log.Printf("[ERROR] %s", sweeperErr)
return sweeperErr
}
return nil
})
}
return membersGroup.Wait().ErrorOrNil()
}