Skip to content

Commit

Permalink
Update provider/azure/azure_private_dns.go
Browse files Browse the repository at this point in the history
Co-authored-by: John Gardiner Myers <[email protected]>
  • Loading branch information
phillebaba and johngmyers authored Aug 15, 2023
1 parent d42df08 commit 55c93e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/azure/azure_private_dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func NewAzurePrivateDNSProvider(configFile string, domainFilter endpoint.DomainF
}
cred, err := getCredentials(*cfg)
if err != nil {
return nil, fmt.Errorf("failed to get credentials: %v", err)
return nil, fmt.Errorf("failed to get credentials: %w", err)
}
zonesClient, err := privatedns.NewPrivateZonesClient(cfg.SubscriptionID, cred, nil)
if err != nil {
Expand Down

0 comments on commit 55c93e7

Please sign in to comment.