We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f30c16 commit a0fb6beCopy full SHA for a0fb6be
task/aws/resources/resource_key_pair.go
@@ -5,6 +5,7 @@ import (
5
"errors"
6
"strings"
7
8
+ "github.com/0x2b3bfa0/logrusctx"
9
"github.com/aws/aws-sdk-go-v2/aws"
10
"github.com/aws/aws-sdk-go-v2/service/ec2"
11
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
@@ -90,7 +91,12 @@ func (k *KeyPair) Read(ctx context.Context) error {
90
91
return common.NotFoundError
92
}
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
+ }
100
k.Resource = &pairs.KeyPairs[0]
101
return nil
102
0 commit comments