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.
2 parents 5cfc7ea + ce355ed commit f4964a8Copy full SHA for f4964a8
pkg/storage/azure/azure.go
@@ -158,8 +158,9 @@ func (d *driver) createStorageAccount(storageAccountsClient storage.AccountsClie
158
159
kind := storage.StorageV2
160
params := &storage.AccountPropertiesCreateParameters{
161
- AllowBlobPublicAccess: to.BoolPtr(false),
162
- MinimumTLSVersion: storage.TLS12,
+ EnableHTTPSTrafficOnly: to.BoolPtr(true),
+ AllowBlobPublicAccess: to.BoolPtr(false),
163
+ MinimumTLSVersion: storage.TLS12,
164
}
165
166
if strings.EqualFold(cloudName, "AZURESTACKCLOUD") {
0 commit comments