Azure / azure-sdk-for-go

This repository is for active development of the Azure SDK for Go. For consumers of the SDK we recommend visiting our public developer docs at:
https://docs.microsoft.com/azure/developer/go/
MIT License
1.63k stars 830 forks source link

FileServicesClient.SetServiceProperties does not work from around 3/8/2022 #17287

Closed andyzhangx closed 2 years ago

andyzhangx commented 2 years ago

Bug Report

return error is like following:

GRPC error: rpc error: code = Internal desc = failed to ensure storage account: storage.FileServicesClient#SetServiceProperties: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="InvalidXmlDocument" Message="XML specified is not syntactically valid.\nRequestId:a8dbc76c-d01a-005a-7bc9-32f63b000000\nTime:2022-03-08T08:47:57.6391029Z"

You could repro the error by GetServiceProperties and then SetServiceProperties, e.g.

            prop, err := az.FileClient.GetServiceProperties(resourceGroup, accountName)
            if err != nil {
                return "", "", err
            }
            if prop.FileServicePropertiesProperties == nil {
                return "", "", fmt.Errorf("FileServicePropertiesProperties of account(%s), resource group(%s) is nil", accountName, resourceGroup)
            }
            prop.FileServicePropertiesProperties.ShareDeleteRetentionPolicy = &storage.DeleteRetentionPolicy{Enabled: to.BoolPtr(false)}
            if _, err := az.FileClient.SetServiceProperties(resourceGroup, accountName, prop); err != nil {
                return "", "", err
            }

related code snippet: https://github.com/kubernetes-sigs/azurefile-csi-driver/blob/4e25bd8c909e639304ac249399e69759f5add2ca/vendor/sigs.k8s.io/cloud-provider-azure/pkg/provider/azure_storageaccount.go#L264-L276

ArcturusZhang commented 2 years ago

Hi @andyzhangx , thank you for opening this issue. Based on the error message you posted here, it is very likely that the service returns this error and the SDK is just bubbling it up. Therefore is it possible you could share some more information about the request you are making here as well as the response so that we could better identify if this is a service issue?

andyzhangx commented 2 years ago

@ArcturusZhang thanks, do you know how to open debug mode with this go sdk? I actually looped azure file service team to take a look, while they said it's sdk issue, if we could get some back and forth debug info, that could narrow down the issue quickly, thanks.

jhendrixMSFT commented 2 years ago

If you enable debug logging it will dump the request body so we can see if the XML is malformed. See here for instructions.

andyzhangx commented 2 years ago

If you enable debug logging it will dump the request body so we can see if the XML is malformed. See here for instructions.

@jhendrixMSFT thanks, I have set AZURE_GO_SDK_LOG_LEVEL=DEBUG and below are all the go sdk debug logs:

https://storage.googleapis.com/kubernetes-jenkins/pr-logs/pull/kubernetes-sigs_azurefile-csi-driver/939/pull-azurefile-csi-driver-e2e/1503653286425661440/build-log.txt

X-Content-Type-Options: nosniff
Date: Tue, 15 Mar 2022 09:18:43 GMT
Content-Type: application/json
X-Ms-Ratelimit-Remaining-Subscription-Writes: 1144
{"error":{"code":"InvalidXmlDocument","message":"XML specified is not syntactically valid.\nRequestId:962f07da-001a-004d-504d-38d7e8000000\nTime:2022-03-15T09:18:43.1796898Z"}}
E0315 09:18:43.202205       1 utils.go:81] GRPC error: rpc error: code = Internal desc = failed to ensure storage account: storage.FileServicesClient#SetServiceProperties: Failure responding to request: StatusCode=400 -- Original Error: autorest/azure: Service returned an error. Status=400 Code="InvalidXmlDocument" Message="XML specified is not syntactically valid.\nRequestId:962f07da-001a-004d-504d-38d7e8000000\nTime:2022-03-15T09:18:43.1796898Z"
I0315 09:18:43.203022       1 utils.go:76] GRPC call: /csi.v1.Controller/CreateVolume
I0315 09:18:43.203039       1 utils.go:77] GRPC request: {"capacity_range":{"required_bytes":10737418240},"name":"pvc-374e77f0-cd2a-41bd-8203-0d65d40f833a","parameters":{"csi.storage.k8s.io/pv/name":"pvc-374e77f0-cd2a-41bd-8203-0d65d40f833a","csi.storage.k8s.io/pvc/name":"pvc-pqzw9","csi.storage.k8s.io/pvc/namespace":"azurefile-1351","disableDeleteRetentionPolicy":"true","secretNamespace":"kube-system","skuName":"Standard_LRS","useDataPlaneAPI":"true"},"volume_capabilities":[{"AccessType":{"Mount":{"mount_flags":["dir_mode=0777","file_mode=0777","uid=0","gid=0","mfsymlinks","cache=strict","nosharesock","vers=3.1.1"]}},"access_mode":{"mode":7}}]}
(2022-03-15T09:18:43.2032397Z) INFO: REQUEST: GET https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts?api-version=2021-02-01
User-Agent: Go/go1.17.7 (amd64-linux) go-autorest/v14.2.1 file.csi.azure.com/e2e-31a3db16c891322ccf4811cfe6fd905860786f73 gc/go1.17.7 (amd64-linux) e2e-test
Authorization: **REDACTED**
(2022-03-15T09:18:43.3403763Z) INFO: RESPONSE: 200 https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts?api-version=2021-02-01
X-Ms-Request-Id: 6499138f-a2c1-4450-8880-18d1b5fef59f
X-Content-Type-Options: nosniff
Cache-Control: no-cache
Content-Type: application/json
Strict-Transport-Security: max-age=31536000; includeSubDomains
Server: Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
X-Ms-Correlation-Request-Id: 68b3aa86-355e-4011-966f-8d4554da165d
X-Ms-Routing-Request-Id: SOUTHCENTRALUS:20220315T091843Z:68b3aa86-355e-4011-966f-8d4554da165d
Pragma: no-cache
Expires: -1
X-Ms-Ratelimit-Remaining-Subscription-Reads: 11955
Date: Tue, 15 Mar 2022 09:18:43 GMT
Vary: Accept-Encoding
{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f01838d58b72d4f45834814","name":"f01838d58b72d4f45834814","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:15:21.1146728Z","key2":"2022-03-15T09:15:21.1146728Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:15:21.1303305Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:15:21.1303305Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:15:21.0365404Z","primaryEndpoints":{"dfs":"https://f01838d58b72d4f45834814.dfs.core.windows.net/","web":"https://f01838d58b72d4f45834814.z21.web.core.windows.net/","blob":"https://f01838d58b72d4f45834814.blob.core.windows.net/","queue":"https://f01838d58b72d4f45834814.queue.core.windows.net/","table":"https://f01838d58b72d4f45834814.table.core.windows.net/","file":"https://f01838d58b72d4f45834814.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f094889c01a7e4f07891fbf","name":"f094889c01a7e4f07891fbf","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:10:38.7682132Z","key2":"2022-03-15T09:10:38.7682132Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:10:38.7839685Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:10:38.7839685Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:10:38.6744640Z","primaryEndpoints":{"dfs":"https://f094889c01a7e4f07891fbf.dfs.core.windows.net/","web":"https://f094889c01a7e4f07891fbf.z21.web.core.windows.net/","blob":"https://f094889c01a7e4f07891fbf.blob.core.windows.net/","queue":"https://f094889c01a7e4f07891fbf.queue.core.windows.net/","table":"https://f094889c01a7e4f07891fbf.table.core.windows.net/","file":"https://f094889c01a7e4f07891fbf.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f09c5b05ff6db47f3a12788","name":"f09c5b05ff6db47f3a12788","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:17:25.9287201Z","key2":"2022-03-15T09:17:25.9287201Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:25.9443476Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:25.9443476Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:17:25.8192930Z","primaryEndpoints":{"dfs":"https://f09c5b05ff6db47f3a12788.dfs.core.windows.net/","web":"https://f09c5b05ff6db47f3a12788.z21.web.core.windows.net/","blob":"https://f09c5b05ff6db47f3a12788.blob.core.windows.net/","queue":"https://f09c5b05ff6db47f3a12788.queue.core.windows.net/","table":"https://f09c5b05ff6db47f3a12788.table.core.windows.net/","file":"https://f09c5b05ff6db47f3a12788.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f0c23f58ebf124605a2cb08","name":"f0c23f58ebf124605a2cb08","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:07:33.6414472Z","key2":"2022-03-15T09:07:33.6414472Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:07:33.6570802Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:07:33.6570802Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:07:33.5320714Z","primaryEndpoints":{"dfs":"https://f0c23f58ebf124605a2cb08.dfs.core.windows.net/","web":"https://f0c23f58ebf124605a2cb08.z21.web.core.windows.net/","blob":"https://f0c23f58ebf124605a2cb08.blob.core.windows.net/","queue":"https://f0c23f58ebf124605a2cb08.queue.core.windows.net/","table":"https://f0c23f58ebf124605a2cb08.table.core.windows.net/","file":"https://f0c23f58ebf124605a2cb08.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f0fd99eacfe964435a918b2","name":"f0fd99eacfe964435a918b2","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:14:51.0049152Z","key2":"2022-03-15T09:14:51.0049152Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:14:51.0206183Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:14:51.0206183Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:14:50.9111650Z","primaryEndpoints":{"dfs":"https://f0fd99eacfe964435a918b2.dfs.core.windows.net/","web":"https://f0fd99eacfe964435a918b2.z21.web.core.windows.net/","blob":"https://f0fd99eacfe964435a918b2.blob.core.windows.net/","queue":"https://f0fd99eacfe964435a918b2.queue.core.windows.net/","table":"https://f0fd99eacfe964435a918b2.table.core.windows.net/","file":"https://f0fd99eacfe964435a918b2.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://f0fd99eacfe964435a918b2-secondary.dfs.core.windows.net/","web":"https://f0fd99eacfe964435a918b2-secondary.z21.web.core.windows.net/","blob":"https://f0fd99eacfe964435a918b2-secondary.blob.core.windows.net/","queue":"https://f0fd99eacfe964435a918b2-secondary.queue.core.windows.net/","table":"https://f0fd99eacfe964435a918b2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f12840513cf524d56a82f08","name":"f12840513cf524d56a82f08","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:03:49.4200528Z","key2":"2022-03-15T09:03:49.4200528Z"},"privateEndpointConnections":[{"id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f12840513cf524d56a82f08/privateEndpointConnections/f12840513cf524d56a82f08.0b78514f-9571-4f3b-b0e0-7135c327ebde","name":"f12840513cf524d56a82f08.0b78514f-9571-4f3b-b0e0-7135c327ebde","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Network/privateEndpoints/f12840513cf524d56a82f08-pvtendpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Deny"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:03:49.4357374Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:03:49.4357374Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:03:49.3106849Z","primaryEndpoints":{"dfs":"https://f12840513cf524d56a82f08.dfs.core.windows.net/","web":"https://f12840513cf524d56a82f08.z21.web.core.windows.net/","blob":"https://f12840513cf524d56a82f08.blob.core.windows.net/","queue":"https://f12840513cf524d56a82f08.queue.core.windows.net/","table":"https://f12840513cf524d56a82f08.table.core.windows.net/","file":"https://f12840513cf524d56a82f08.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f3503338c5857410aa79cd5","name":"f3503338c5857410aa79cd5","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:17:05.4284513Z","key2":"2022-03-15T09:17:05.4284513Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:05.4440369Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:05.4440369Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:17:05.3034903Z","primaryEndpoints":{"dfs":"https://f3503338c5857410aa79cd5.dfs.core.windows.net/","web":"https://f3503338c5857410aa79cd5.z21.web.core.windows.net/","blob":"https://f3503338c5857410aa79cd5.blob.core.windows.net/","queue":"https://f3503338c5857410aa79cd5.queue.core.windows.net/","table":"https://f3503338c5857410aa79cd5.table.core.windows.net/","file":"https://f3503338c5857410aa79cd5.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f41161eba21a64056bd594f","name":"f41161eba21a64056bd594f","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:10:16.4868173Z","key2":"2022-03-15T09:10:16.4868173Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:10:16.5025016Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:10:16.5025016Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-15T09:10:16.3774545Z","primaryEndpoints":{"file":"https://f41161eba21a64056bd594f.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f454026354d704a42a1e73d","name":"f454026354d704a42a1e73d","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:05:40.7183099Z","key2":"2022-03-15T09:05:40.7183099Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:05:40.7339297Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:05:40.7339297Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:05:40.6245057Z","primaryEndpoints":{"dfs":"https://f454026354d704a42a1e73d.dfs.core.windows.net/","web":"https://f454026354d704a42a1e73d.z21.web.core.windows.net/","blob":"https://f454026354d704a42a1e73d.blob.core.windows.net/","queue":"https://f454026354d704a42a1e73d.queue.core.windows.net/","table":"https://f454026354d704a42a1e73d.table.core.windows.net/","file":"https://f454026354d704a42a1e73d.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f53b8f0131b144e7e8cf605","name":"f53b8f0131b144e7e8cf605","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:18:24.3043432Z","key2":"2022-03-15T09:18:24.3043432Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:24.3043432Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:24.3043432Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:18:24.1949546Z","primaryEndpoints":{"dfs":"https://f53b8f0131b144e7e8cf605.dfs.core.windows.net/","web":"https://f53b8f0131b144e7e8cf605.z21.web.core.windows.net/","blob":"https://f53b8f0131b144e7e8cf605.blob.core.windows.net/","queue":"https://f53b8f0131b144e7e8cf605.queue.core.windows.net/","table":"https://f53b8f0131b144e7e8cf605.table.core.windows.net/","file":"https://f53b8f0131b144e7e8cf605.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f6660ceead91147718e4ae3","name":"f6660ceead91147718e4ae3","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:17:45.5695515Z","key2":"2022-03-15T09:17:45.5695515Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:45.5695515Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:17:45.5695515Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:17:45.4445795Z","primaryEndpoints":{"dfs":"https://f6660ceead91147718e4ae3.dfs.core.windows.net/","web":"https://f6660ceead91147718e4ae3.z21.web.core.windows.net/","blob":"https://f6660ceead91147718e4ae3.blob.core.windows.net/","queue":"https://f6660ceead91147718e4ae3.queue.core.windows.net/","table":"https://f6660ceead91147718e4ae3.table.core.windows.net/","file":"https://f6660ceead91147718e4ae3.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f69c7d1e0b9574ac5af6176","name":"f69c7d1e0b9574ac5af6176","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:18:04.8823249Z","key2":"2022-03-15T09:18:04.8823249Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:04.8823249Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:04.8823249Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:18:04.7729447Z","primaryEndpoints":{"dfs":"https://f69c7d1e0b9574ac5af6176.dfs.core.windows.net/","web":"https://f69c7d1e0b9574ac5af6176.z21.web.core.windows.net/","blob":"https://f69c7d1e0b9574ac5af6176.blob.core.windows.net/","queue":"https://f69c7d1e0b9574ac5af6176.queue.core.windows.net/","table":"https://f69c7d1e0b9574ac5af6176.table.core.windows.net/","file":"https://f69c7d1e0b9574ac5af6176.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f8608d75b997f4be591a203","name":"f8608d75b997f4be591a203","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:09:50.0179306Z","key2":"2022-03-15T09:09:50.0179306Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:09:50.0179306Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:09:50.0179306Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:09:49.9084912Z","primaryEndpoints":{"dfs":"https://f8608d75b997f4be591a203.dfs.core.windows.net/","web":"https://f8608d75b997f4be591a203.z21.web.core.windows.net/","blob":"https://f8608d75b997f4be591a203.blob.core.windows.net/","queue":"https://f8608d75b997f4be591a203.queue.core.windows.net/","table":"https://f8608d75b997f4be591a203.table.core.windows.net/","file":"https://f8608d75b997f4be591a203.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available","secondaryLocation":"northcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://f8608d75b997f4be591a203-secondary.dfs.core.windows.net/","web":"https://f8608d75b997f4be591a203-secondary.z21.web.core.windows.net/","blob":"https://f8608d75b997f4be591a203-secondary.blob.core.windows.net/","queue":"https://f8608d75b997f4be591a203-secondary.queue.core.windows.net/","table":"https://f8608d75b997f4be591a203-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f8fe5403643e04730851d46","name":"f8fe5403643e04730851d46","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:08:02.2667762Z","key2":"2022-03-15T09:08:02.2667762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:08:02.2823973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:08:02.2823973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:08:02.1574801Z","primaryEndpoints":{"dfs":"https://f8fe5403643e04730851d46.dfs.core.windows.net/","web":"https://f8fe5403643e04730851d46.z21.web.core.windows.net/","blob":"https://f8fe5403643e04730851d46.blob.core.windows.net/","queue":"https://f8fe5403643e04730851d46.queue.core.windows.net/","table":"https://f8fe5403643e04730851d46.table.core.windows.net/","file":"https://f8fe5403643e04730851d46.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/fc1fa1cd8292b466caaa6fb","name":"fc1fa1cd8292b466caaa6fb","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:14:15.7076881Z","key2":"2022-03-15T09:14:15.7076881Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:14:15.7232556Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:14:15.7232556Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-15T09:14:15.5983262Z","primaryEndpoints":{"file":"https://fc1fa1cd8292b466caaa6fb.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/fe9078d98b3c54da5b91411","name":"fe9078d98b3c54da5b91411","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"account":"azurefile-test","k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:02:50.9506514Z","key2":"2022-03-15T09:02:50.9506514Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:02:50.9664227Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:02:50.9664227Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-15T09:02:50.8413063Z","primaryEndpoints":{"file":"https://fe9078d98b3c54da5b91411.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/fffba57d985164caf8e0e3b","name":"fffba57d985164caf8e0e3b","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:11:56.4874180Z","key2":"2022-03-15T09:11:56.4874180Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:11:56.4874180Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:11:56.4874180Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-15T09:11:56.3780097Z","primaryEndpoints":{"file":"https://fffba57d985164caf8e0e3b.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}]}
I0315 09:18:43.342839       1 azure_storageaccount.go:233] azure - no matching account found, begin to create a new account f1a7a315d1945489ea6a4ba in resource group kubetest-eqlh8vfv, location: southcentralus, accountType: Standard_LRS, accountKind: StorageV2, tags: map[k8s-azure-created-by:azure]
I0315 09:18:43.342882       1 azure_storageaccount.go:254] set AllowBlobPublicAccess(false) for storage account(f1a7a315d1945489ea6a4ba)
(2022-03-15T09:18:43.3429571Z) INFO: REQUEST: PUT https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba?api-version=2021-02-01
Content-Type: application/json; charset=utf-8
User-Agent: Go/go1.17.7 (amd64-linux) go-autorest/v14.2.1 file.csi.azure.com/e2e-31a3db16c891322ccf4811cfe6fd905860786f73 gc/go1.17.7 (amd64-linux) e2e-test
Authorization: **REDACTED**
{"kind":"StorageV2","location":"southcentralus","properties":{"supportsHttpsTrafficOnly":true,"allowBlobPublicAccess":false,"minimumTlsVersion":"TLS1_2"},"sku":{"name":"Standard_LRS"},"tags":{"k8s-azure-created-by":"azure"}}
(2022-03-15T09:18:45.1681544Z) INFO: RESPONSE: 202 https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba?api-version=2021-02-01
Retry-After: 17
Date: Tue, 15 Mar 2022 09:18:45 GMT
Cache-Control: no-cache
Content-Type: text/plain; charset=utf-8
Strict-Transport-Security: max-age=31536000; includeSubDomains
Pragma: no-cache
X-Ms-Request-Id: cf3aa220-873b-4425-9472-95396f8df4e8
Server: Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
X-Ms-Routing-Request-Id: SOUTHCENTRALUS:20220315T091845Z:4b7e11f6-1014-4cbc-a49f-1e2daa496cad
Expires: -1
Location: https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/cf3aa220-873b-4425-9472-95396f8df4e8?monitor=true&api-version=2021-02-01
X-Ms-Ratelimit-Remaining-Subscription-Writes: 1187
X-Ms-Correlation-Request-Id: 4b7e11f6-1014-4cbc-a49f-1e2daa496cad
X-Content-Type-Options: nosniff
Content-Length: 0
(2022-03-15T09:18:45.1682257Z) INFO: WaitForCompletionRef: initial polling delay
(2022-03-15T09:18:45.1682323Z) INFO: DelayForBackoffWithCap: sleeping for 17s
(2022-03-15T09:19:02.1686412Z) INFO: REQUEST: GET https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/cf3aa220-873b-4425-9472-95396f8df4e8?monitor=true&api-version=2021-02-01
Authorization: **REDACTED**
User-Agent: Go/go1.17.7 (amd64-linux) go-autorest/v14.2.1 file.csi.azure.com/e2e-31a3db16c891322ccf4811cfe6fd905860786f73 gc/go1.17.7 (amd64-linux) e2e-test
(2022-03-15T09:19:02.1985603Z) INFO: RESPONSE: 200 https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/cf3aa220-873b-4425-9472-95396f8df4e8?monitor=true&api-version=2021-02-01
X-Ms-Routing-Request-Id: SOUTHCENTRALUS:20220315T091902Z:74bce417-2737-4654-9972-46830ce68977
Pragma: no-cache
Content-Type: application/json
Server: Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
X-Ms-Correlation-Request-Id: 74bce417-2737-4654-9972-46830ce68977
X-Content-Type-Options: nosniff
X-Ms-Request-Id: a08b1200-b48d-4e03-a2ac-c873b11d2f7d
Strict-Transport-Security: max-age=31536000; includeSubDomains
X-Ms-Ratelimit-Remaining-Subscription-Reads: 11954
Date: Tue, 15 Mar 2022 09:19:02 GMT
Expires: -1
Vary: Accept-Encoding
Cache-Control: no-cache
{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba","name":"f1a7a315d1945489ea6a4ba","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:18:43.6795889Z","key2":"2022-03-15T09:18:43.6795889Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:43.6795889Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:43.6795889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:18:43.5701540Z","primaryEndpoints":{"dfs":"https://f1a7a315d1945489ea6a4ba.dfs.core.windows.net/","web":"https://f1a7a315d1945489ea6a4ba.z21.web.core.windows.net/","blob":"https://f1a7a315d1945489ea6a4ba.blob.core.windows.net/","queue":"https://f1a7a315d1945489ea6a4ba.queue.core.windows.net/","table":"https://f1a7a315d1945489ea6a4ba.table.core.windows.net/","file":"https://f1a7a315d1945489ea6a4ba.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}
(2022-03-15T09:19:02.1989450Z) INFO: REQUEST: GET https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba?api-version=2021-02-01
User-Agent: Go/go1.17.7 (amd64-linux) go-autorest/v14.2.1 file.csi.azure.com/e2e-31a3db16c891322ccf4811cfe6fd905860786f73 gc/go1.17.7 (amd64-linux) e2e-test
Authorization: **REDACTED**
(2022-03-15T09:19:02.2384737Z) INFO: RESPONSE: 200 https://management.azure.com/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba?api-version=2021-02-01
Strict-Transport-Security: max-age=31536000; includeSubDomains
Cache-Control: no-cache
Pragma: no-cache
Content-Type: application/json
Expires: -1
Vary: Accept-Encoding
X-Ms-Request-Id: ea420b5c-f77b-4e9a-95a6-f33e18b8a6ba
Server: Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
X-Ms-Correlation-Request-Id: 18e57c73-aa9e-4e29-a9b5-35f669e05298
X-Ms-Routing-Request-Id: SOUTHCENTRALUS:20220315T091902Z:18e57c73-aa9e-4e29-a9b5-35f669e05298
X-Ms-Ratelimit-Remaining-Subscription-Reads: 11953
X-Content-Type-Options: nosniff
Date: Tue, 15 Mar 2022 09:19:02 GMT
{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/0e46bd28-a80f-4d3a-8200-d9eb8d80cb2e/resourceGroups/kubetest-eqlh8vfv/providers/Microsoft.Storage/storageAccounts/f1a7a315d1945489ea6a4ba","name":"f1a7a315d1945489ea6a4ba","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"k8s-azure-created-by":"azure"},"properties":{"keyCreationTime":{"key1":"2022-03-15T09:18:43.6795889Z","key2":"2022-03-15T09:18:43.6795889Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:43.6795889Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-15T09:18:43.6795889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-15T09:18:43.5701540Z","primaryEndpoints":{"dfs":"https://f1a7a315d1945489ea6a4ba.dfs.core.windows.net/","web":"https://f1a7a315d1945489ea6a4ba.z21.web.core.windows.net/","blob":"https://f1a7a315d1945489ea6a4ba.blob.core.windows.net/","queue":"https://f1a7a315d1945489ea6a4ba.queue.core.windows.net/","table":"https://f1a7a315d1945489ea6a4ba.table.core.windows.net/","file":"https://f1a7a315d1945489ea6a4ba.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}
lirenhe commented 2 years ago

Already start the internal conversation for this item. The issue seems to be a service problem so close the issue in GitHub. Let me know if you have further questions.