Note: This question is part of 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 RG1 blade, you click Automation script.
Does this meet the goal?
Click on the arrows to vote for the correct answer
A. B.B
From the RG1 blade, click Deployments
https://docs.microsoft.com/en-us/azure/azure-resource-manager/templates/template-tutorial-create-first-template?tabs=azure-powershellNo, the solution mentioned in the question does not meet the goal of viewing the date and time when the resources were created in RG1.
Clicking on the "Automation script" option in the Resource Group blade will show the ARM (Azure Resource Manager) template that was used to deploy the resources in the resource group. It does not provide information about the creation date and time of the resources.
To view the creation date and time of the resources, you can use the Azure portal or Azure PowerShell. Here are the steps to view the creation date and time of the resources using the Azure portal:
Open the Azure portal and navigate to the resource group that contains the resources you want to view.
Select the resource you want to view.
In the resource's blade, under the "Settings" section, click on "Properties".
In the "Properties" blade, you will see the "Created at" field that displays the date and time when the resource was created.
Repeat steps 2-4 for all the resources in the resource group to view their creation date and time.
Alternatively, you can use Azure PowerShell to view the creation date and time of the resources. Here's an example command:
vbnetGet-AzResource -ResourceGroupName RG1 | Select-Object Name, ResourceType, CreatedTime
This command will retrieve all the resources in the "RG1" resource group and display their names, resource types, and creation date and time.