Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.52 KB

virtual_machine.html.markdown

File metadata and controls

58 lines (37 loc) · 1.52 KB
subcategory layout page_title description
Compute
azurerm
Azure Resource Manager: azurerm_virtual_machine
Gets information about an existing Virtual Machine.

Data Source: azurerm_virtual_machine

Use this data source to access information about an existing Virtual Machine.

Example Usage

provider "azurerm" {
  features {}
}

data "azurerm_virtual_machine" "example" {
  name                = "production"
  resource_group_name = "networking"
}

output "virtual_machine_id" {
  value = data.azurerm_virtual_machine.example.id
}

Argument Reference

  • name - Specifies the name of the Virtual Machine.

  • resource_group_name - Specifies the name of the resource group the Virtual Machine is located in.

Attributes Reference

  • id - The ID of the Virtual Machine.

  • identity - A identity block as defined below.


An identity block exports the following:

  • identity_ids - The list of User Managed Identity ID's which are assigned to the Virtual Machine.

  • principal_id - The ID of the System Managed Service Principal assigned to the Virtual Machine.

  • tenant_id - The ID of the Tenant of the System Managed Service Principal assigned to the Virtual Machine.

  • type - The identity type of the Managed Identity assigned to the Virtual Machine.

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

  • read - (Defaults to 5 minutes) Used when retrieving the Virtual Machine.