Skip to content

Commit

Permalink
Merge pull request #915 from pavangudiwada/fix/914-aws-loadbalancer-u…
Browse files Browse the repository at this point in the history
…i-link

Removing a / thats breaking the AWS console Load Balancer URL in the UI
  • Loading branch information
mlabouardy authored Aug 21, 2023
2 parents f3a7b81 + 8edcd44 commit f65b32e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/aws/elb/loadbalancers.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func LoadBalancers(ctx context.Context, client ProviderClient) ([]Resource, erro
Tags: tags,
CreatedAt: *loadbalancer.CreatedTime,
FetchedAt: time.Now(),
Link: fmt.Sprintf("https://%s.console.aws.amazon.com/ec2/home?region=%s#/LoadBalancer:loadBalancerArn=%s", client.AWSClient.Region, client.AWSClient.Region, resourceArn),
Link: fmt.Sprintf("https://%s.console.aws.amazon.com/ec2/home?region=%s#LoadBalancer:loadBalancerArn=%s", client.AWSClient.Region, client.AWSClient.Region, resourceArn),
})
}

Expand Down

0 comments on commit f65b32e

Please sign in to comment.