We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ba84f commit d393ebeCopy full SHA for d393ebe
pkg/blob/azure.go
@@ -47,7 +47,7 @@ var (
47
48
// IsAzureStackCloud decides whether the driver is running on Azure Stack Cloud.
49
func IsAzureStackCloud(cloud *azure.Cloud) bool {
50
- return strings.EqualFold(cloud.Config.Cloud, "AZURESTACKCLOUD")
+ return !cloud.Config.DisableAzureStackCloud && strings.EqualFold(cloud.Config.Cloud, "AZURESTACKCLOUD")
51
}
52
53
// getCloudProvider get Azure Cloud Provider
0 commit comments