Skip to content

Commit a0fb6be

Browse files
authored
Check if DescribeKeyPairs returns a result. (#754)
1 parent 6f30c16 commit a0fb6be

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

task/aws/resources/resource_key_pair.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"errors"
66
"strings"
77

8+
"github.com/0x2b3bfa0/logrusctx"
89
"github.com/aws/aws-sdk-go-v2/aws"
910
"github.com/aws/aws-sdk-go-v2/service/ec2"
1011
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
@@ -90,7 +91,12 @@ func (k *KeyPair) Read(ctx context.Context) error {
9091
return common.NotFoundError
9192
}
9293
}
93-
94+
if pairs == nil {
95+
// Unexpected, but it looks like DescribeKeyPairs may return no error and a nil
96+
// result.
97+
logrusctx.Error(ctx, "EC2 DescribeKeyPairs returned nil result.")
98+
return nil
99+
}
94100
k.Resource = &pairs.KeyPairs[0]
95101
return nil
96102
}

0 commit comments

Comments
 (0)