Skip to content

Commit b2d8753

Browse files
committed
fix typo
1 parent 78f7edc commit b2d8753

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/aws/provider/default_aws_clients_provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func (p *defaultAWSClientsProvider) GetEC2Client(ctx context.Context, operationN
8484
return p.ec2Client, nil
8585
}
8686

87-
func (p *defaultAWSClientsProvider) GetELBV2Client(ctx context.Context, operationName string) (*elasticloadbalancingv2.Client, error) {
87+
func (p *defaultAWSClientsProvider) GetELBv2Client(ctx context.Context, operationName string) (*elasticloadbalancingv2.Client, error) {
8888
return p.elbv2Client, nil
8989
}
9090

pkg/aws/services/ec2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func (c *ec2Client) DescribeSubnetsAsList(ctx context.Context, input *ec2.Descri
126126

127127
func (c *ec2Client) DescribeVPCsAsList(ctx context.Context, input *ec2.DescribeVpcsInput) ([]types.Vpc, error) {
128128
var result []types.Vpc
129-
client, err := c.awsClientsProvider.GetEC2Client(ctx, "DescribeVPCs")
129+
client, err := c.awsClientsProvider.GetEC2Client(ctx, "DescribeVpcs")
130130
if err != nil {
131131
return nil, err
132132
}

0 commit comments

Comments
 (0)