A list of Azure services have enabled within my tenancy

Rahman, Mustaq 0 Reputation points
2023-07-04T15:42:41.0866667+00:00

Can you please assist by cross-referencing or having a list of which Azure services I have enabled on my Azure tenant with the below list of all available Azure services? Basically, how can I obtain details of all Azure services I have enabled so far please?

https://azure.microsoft.com/en-au/products/

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
41,558 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Sedat SALMAN 14,145 Reputation points MVP
    2023-07-04T19:29:49.6333333+00:00

    With Azure CLI, you can list the resources you have

    az resource list
    

    This command lists all resources in your Azure subscription.

    If you prefer Azure PowerShell, use the command:

    Get-AzResource
    

    These commands will return a list of all subscription resources, not just services. However, because each resource is associated with a service (for example, a virtual machine is associated with Azure Compute, a database with Azure SQL Database, and so on), you can use this information to determine which services you are using.

    Remember that the Azure CLI and Azure PowerShell commands will both return a list of resources based on the logged-in account. Check that you're logged in to the correct account.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.