We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
InternalServerErrorException
1 parent 01ddd96 commit 0ac7ba9Copy full SHA for 0ac7ba9
internal/sweep/awsv2/skip.go
@@ -45,6 +45,10 @@ func SkipSweepError(err error) bool {
45
if tfawserr.ErrMessageContains(err, "HttpConnectionTimeoutException", "Failed to connect to") {
46
return true
47
}
48
+ // Example (amp): InternalServerErrorException: Internal server error
49
+ if tfawserr.ErrMessageContains(err, "InternalServerErrorException", "Internal server error") {
50
+ return true
51
+ }
52
// Example (GovCloud): InvalidAction: DescribeDBProxies is not available in this region
53
if tfawserr.ErrMessageContains(err, "InvalidAction", "is not available") {
54
0 commit comments