View Date and Time of Resource Creation in Azure Subscription | AZ-100 Exam Question Answer | Microsoft Azure Infrastructure and Deployment

View Date and Time of Resource Creation

Question

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You have an Azure subscription named Subscription1. Subscription1 contains a resource group named RG1. RG1 contains resources that were deployed by using templates.

You need to view the date and time when the resources were created in RG1.

Solution: From the Subscriptions blade, you select the subscription, and then click Resource providers.

Does this meet the goal?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B.

B

No, the provided solution does not meet the goal of viewing the date and time when the resources were created in RG1.

The Resource Providers option in the Azure portal allows you to view the available resource providers for a specific subscription. It does not provide information on when the resources were created in a particular resource group.

To view the date and time when the resources were created in RG1, you can follow these steps:

  1. Open the Azure portal and navigate to the Resource group blade for RG1.
  2. From the Overview tab, you can see the list of resources that are deployed in RG1.
  3. Click on any resource to open its blade.
  4. From the resource blade, select the Properties tab.
  5. In the Properties tab, you can view the Created time and date under the Basics section.

Repeat steps 3-5 for each resource to view their creation dates and times.

Alternatively, you can use Azure PowerShell or Azure CLI to retrieve the creation date and time of all resources in RG1 with a single command. For example, using Azure PowerShell, you can run the following command:

Get-AzResource -ResourceGroupName RG1 | Select Name, ResourceType, CreatedTime

This command retrieves all the resources in RG1 and selects their name, type, and creation time.