Skip to content

Commit

Permalink
Remove legacy aws sdk from azure installer (#49771)
Browse files Browse the repository at this point in the history
Replaces calls to aws.StringValue from the legacy aws sdk with
a similar function already defined in the imported cloud/azure
package.
  • Loading branch information
rosstimothy authored Dec 4, 2024
1 parent 2967e4e commit 7eae7e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions lib/srv/server/azure_installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import (
"net/url"

"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v3"
"github.com/aws/aws-sdk-go/aws"
"github.com/gravitational/trace"
"golang.org/x/sync/errgroup"

Expand Down Expand Up @@ -70,7 +69,7 @@ func (ai *AzureInstaller) Run(ctx context.Context, req AzureRunRequest) error {
runRequest := azure.RunCommandRequest{
Region: req.Region,
ResourceGroup: req.ResourceGroup,
VMName: aws.StringValue(inst.Name),
VMName: azure.StringVal(inst.Name),
Parameters: req.Params,
Script: script,
}
Expand Down
7 changes: 3 additions & 4 deletions lib/srv/server/azure_watcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import (
"time"

"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v3"
"github.com/aws/aws-sdk-go/aws"
"github.com/gravitational/trace"

usageeventsv1 "github.com/gravitational/teleport/api/gen/proto/go/usageevents/v1"
Expand Down Expand Up @@ -66,7 +65,7 @@ func (instances *AzureInstances) MakeEvents() map[string]*usageeventsv1.Resource
}
events := make(map[string]*usageeventsv1.ResourceCreateEvent, len(instances.Instances))
for _, inst := range instances.Instances {
events[azureEventPrefix+aws.StringValue(inst.ID)] = &usageeventsv1.ResourceCreateEvent{
events[azureEventPrefix+azure.StringVal(inst.ID)] = &usageeventsv1.ResourceCreateEvent{
ResourceType: resourceType,
ResourceOrigin: types.OriginCloud,
CloudProvider: types.CloudAzure,
Expand Down Expand Up @@ -177,13 +176,13 @@ func (f *azureInstanceFetcher) GetInstances(ctx context.Context, _ bool) ([]Inst
}

for _, vm := range vms {
location := aws.StringValue(vm.Location)
location := azure.StringVal(vm.Location)
if _, ok := instancesByRegion[location]; !ok && !allowAllRegions {
continue
}
vmTags := make(map[string]string, len(vm.Tags))
for key, value := range vm.Tags {
vmTags[key] = aws.StringValue(value)
vmTags[key] = azure.StringVal(value)
}
if match, _, _ := services.MatchLabels(f.Labels, vmTags); !match {
continue
Expand Down

0 comments on commit 7eae7e0

Please sign in to comment.