Hi Steve,
You may run below PowerShell commands in Azure Cloud Shell:
$sql = Get-AzResource -ResourceGroupName myresourcegroup -ResourceName myazuresqlserver -ResourceType Microsoft.Sql/servers
$sql.Properties.minimalTlsVersion = "1.3"
$sql|Set-AzResource
The portal won't show 1.3 but if you check via powershell or REST API it will show 1.3
SQLSecurityAuditEvents log screenshot after connecting from TLS 1.3 client:
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP