Hi Ada Galloway,
The error message "Managed Service Identity (MSI) was not found for resource" typically indicates that the Managed Identity associated with your Azure Storage Account is either not enabled or not properly configured. Here are a few steps you can take to troubleshoot and potentially resolve the issue:
Verify that the Managed Identity has the necessary permissions to update the storage account. It should have the required roles assigned, such as Storage Account Contributor.
If the Managed identity is not in use for the storage account, could you please remove or delete it from the storage account.
Please use this below command to remove the managed identity from storage account.
(Get-AzStorageAccount -ResourceGroupName "<your-resource-group>" -Name "<your-storage-account>").Identity
Set-AzStorageAccount -ResourceGroupName "<resource grp name>" -Name "<Storage account name>" -IdentityType None
and try setting the TLS version again.
Hope the above suggestion helps! Please let us know do you have any further queries.
Please do consider to Accepting the answer wherever the information provided helps you, this can be beneficial to other community members.