Keeping track of resources within an Azure subscription can quickly become overwhelming. Whether you’re managing a small deployment or an enterprise-scale environment, the need for a comprehensive overview of your resources is essential for maintaining control, ensuring compliance, and optimizing costs. This is where Azure Resource Inventory (ARI) could be a nice tool for you.
ARI is an open-source tool developed by Microsoft that simplifies the task of gathering, analyzing, and visualizing information about your Azure resources. It is a tool for helping you manage your infrastructure more effectively. In this blog, I’ll explore the need for ARI, its key benefits, and how you can use it in your cloud operations.
Azure Resource Inventory (ARI) is a powerful tool designed to help you gain visibility into your Azure resources. Here are some essential aspects you need to know:
- Detailed Inventory Collection. ARI collects detailed information about all resources within your Azure subscriptions. This includes virtual machines, storage accounts, networking components, databases, and much more. ARI enables you to have a clear picture of everything that is running in your environment
- Customizable. The tool is highly customizable, allowing you to decide how the data collection process to fit your specific needs. ARI’s modular design means you can easily extend its capabilities by adding custom queries or integrating it with other tools in your data collection
- Security and Compliance. One of the primary advantages of ARI is its ability to support security and compliance efforts. By providing a detailed view of your resources, ARI helps identify potential vulnerabilities, ensure that configurations adhere to best practices
- Cost Management. ARI also plays an important role in cost management. You can identify unused or underutilized assets and optimize your spending accordingly
- Simple Reporting. ARI generates reports that are easy to understand and share with stakeholders. These reports provide insights into resource allocation, usage patterns, and potential areas for improvement, making it easier to communicate the state of your environment to both technical and non-technical audiences
- Open Source and Community-Driven. As an open-source tool, ARI benefits from contributions and feedback from the community. This ensures that the tool remains up-to-date with the latest Azure features and evolves to meet the needs of its users
Before you can start using the powerful features of Azure Resource Inventory (ARI), you’ll need to set it up locally. The process is simple and involves a few key steps: installing dependencies, cloning the repository, and running the tool. Here’s a step-by-step guide to help you get started:
1. Prerequisites
Before you begin, make sure you have the following installed on your local machine:
- Git: You’ll need Git to clone the ARI repository. If you haven’t installed it yet, you can download it from here
- .NET SDK: ARI is built on .NET, so you’ll need the .NET SDK installed. You can download it from here
- Azure CLI: The Azure CLI is required to authenticate and interact with your Azure subscriptions. You can get the latest version here
2. Clone the ARI Repository
Once the prerequisites are installed, the next step is to clone the ARI repository from GitHub. Open your terminal or command prompt and run the following command:
1
|
git clone https://github.com/microsoft/ARI.git |
This command will create a local copy of the ARI repository on your machine.
3. Install other dependencies
Execute the following commands in order, as outlined below (make sure you’re running PowerShell as an Admin):
1
2
3
4
|
Install-Module -Name ImportExcel az extension add --name account az extension add --name resource-graph az config set core.enable_broker_on_windows=false |
4. Run ARI script
Get your Azure Tenant ID (which can be found on the Azure Entra landing page). Navigate to a project repository you cloned from GitHub in Step 2, and you should see ‘AzureResourceInventory.ps1’ script there. If you run this script for all subscriptions attached to your Azure tenant, you won’t need to specify a subscription ID, and the command will look like this:
1
|
.\AzureResourceInventory.ps1 -TenantID <your_tenent_id_here> -QuotaUsage |
It’ll ask you to authenticate, and once you do, it will start generating a report. For Windows users, the report (along with other artifacts) will be dropped to `C:\AzureResourceInventory`.
Excel report:
This report contains useful information about the service your organization utilizes in Azure Cloud. It empowers DevOps engineers to maintain control, optimize costs, and ensure compliance across their Azure environments efficiently
Just what we need right now!