Hi @Narisetti, Bernard , aside from making sure that the tenant ID and subscription ID in your configuration are correct, make sure you are logged in with the correct account using the Azure CLI. You can check this with:
az account show
If the account is incorrect, log in with:
az login --tenant <tenant-id>
If you are using a service principal for authentication, make sure it has the necessary permissions to access the subscription and tenant.
You could also try using a different authority URL to get the token. You can set the authority with:
az cloud set --name AzureCloud
If the subscription was recently transferred to another tenant, it might take some time for the changes to propagate. Wait for a while and try again later.
Please let me know if this helps.
Best,
James