2017-03-02 10:11:18 +00:00
---
title: About the azure_virtual_machine Resource
2018-02-20 02:30:04 +00:00
platform: azure
2017-03-02 10:11:18 +00:00
---
2018-02-15 02:23:29 +00:00
# azure\_virtual\_machine
2017-03-02 10:11:18 +00:00
2019-04-26 18:24:29 +00:00
Use the `azure_virtual_machine` Chef InSpec audit resource to ensure that a Virtual Machine has been provisioned correctly.
2017-03-02 10:11:18 +00:00
2018-08-09 12:34:49 +00:00
## Availability
### Installation
2019-04-26 18:24:29 +00:00
This resource is distributed along with Chef InSpec itself. You can use it automatically.
2018-08-09 12:34:49 +00:00
### Version
This resource first became available in v2.0.16 of InSpec.
2017-03-02 10:11:18 +00:00
## Syntax
2018-02-20 03:09:51 +00:00
The name of the machine and the resource group are required as properties to the resource.
2017-03-02 10:11:18 +00:00
2018-02-15 02:23:29 +00:00
describe azure_virtual_machine(group_name: 'MyResourceGroup', name: 'MyVM') do
its('property') { should eq 'value' }
end
2017-03-02 10:11:18 +00:00
where
2018-02-20 03:09:51 +00:00
* `MyVm` is the name of the virtual machine as seen in Azure; it is **not** the hostname of the machine
* `MyResourceGroup` is the name of the machine's resource group
* `property` is one of the resource properties
2017-03-02 10:11:18 +00:00
* `value` is the expected output from the matcher
2018-02-20 02:30:04 +00:00
## Examples
2017-12-12 18:20:22 +00:00
2019-04-26 18:24:29 +00:00
The following examples show to use this Chef InSpec audit resource.
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
### Check that the first data disk is of the correct size
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
describe azure_virtual_machine_data_disk(group_name: 'InSpec-Azure', name: 'Linux-Internal-VM').where(number: 1) do
its('size') { should cmp >= 15 }
end
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
<br>
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
## Parameters
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
* `group_name`, `name`, `apiversion`
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
## Parameter Examples
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
The options that can be passed to the resource are as follows.
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
### group_name (required)
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
Use this parameter to define the Azure Resource Group to be tested.
describe azure_virtual_machine_data_disk(group_name: 'InSpec-Azure') do
...
end
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
### name
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
Use this parameter to define the name of the Azure resource to test.
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
describe azure_virtual_machine_data_disk(group_name: 'InSpec-Azure', name: 'Windows-Internal-VM') do
...
2018-02-15 02:23:29 +00:00
end
2018-02-20 02:30:04 +00:00
### apiversion
2018-03-02 14:18:01 +00:00
The API Version to use when querying the resource. Defaults to the latest version for the resource.
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
describe azure_virtual_machine_data_disk(group_name: 'InSpec-Azure', name: 'Windows-Internal-VM', apiversion: '2.0') do
...
2018-02-15 02:23:29 +00:00
end
2018-02-20 02:30:04 +00:00
These options can also be set using the environment variables:
* `AZURE_RESOURCE_GROUP_NAME`
* `AZURE_RESOURCE_NAME`
* `AZURE_RESOURCE_API_VERSION`
When the options have been set as well as the environment variables, the environment variables take priority.
2018-02-15 02:23:29 +00:00
<br>
2017-12-12 18:20:22 +00:00
## Properties
2018-02-20 02:30:04 +00:00
* `type`, `location`, `name`, `publisher`, `offer`, `sku`, `os_type`, `os_disk_name`, `have_managed_osdisk`, `caching`, `create_option`, `disk_size_gb`, `have_data_disks`, `data_disk_count` , `storage_account_type`, `vm_size`, `computer_name`, `admin_username`, `have_nics`, `nic_count`, `connected_nics`, `have_password_authentication`, `password_authentication?`, `have_custom_data`, `custom_data?`, `have_ssh_keys`, `ssh_keys?`, `ssh_key_count`, `ssh_keys`, `have_boot_diagnostics`, `boot_diagnostics_storage_uri`
2018-02-15 02:23:29 +00:00
<br>
## Property Examples
2019-04-26 18:24:29 +00:00
This Chef InSpec audit resource has the following properties that can be tested:
2017-12-12 18:20:22 +00:00
### type
2018-02-20 02:30:04 +00:00
The Azure Resource type. For a virtual machine this will always return `Microsoft.Compute/virtualMachines`
its('type') { should cmp 'Microsoft.Compute/virtualMachines' }
2017-12-12 18:20:22 +00:00
### location
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
Where the machine is located
2017-03-02 10:11:18 +00:00
2018-02-15 18:24:21 +00:00
its('location') { should eq 'westeurope' }
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
### name
2017-03-02 10:41:05 +00:00
2017-12-12 18:20:22 +00:00
Name of the Virtual Machine in Azure. Be aware that this is not the computer name or hostname, rather the name of the machine when seen in the Azure Portal.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('name') { should cmp 'InSpec-Azure' }
2017-03-02 10:11:18 +00:00
### publisher
2018-02-20 03:09:51 +00:00
The publisher of this machine's build image.
2017-03-02 10:11:18 +00:00
2018-02-20 03:09:51 +00:00
`nil` if the machine was created from a custom image.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('publisher') { should cmp 'MicrosoftWindowsServer' }
2017-03-02 10:11:18 +00:00
### offer
The offer from the publisher of the build image.
2018-02-20 03:09:51 +00:00
`nil` if the machine was created from a custom image.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('offer') { should cmp 'WindowsServer' }
2017-03-02 10:11:18 +00:00
### sku
The item from the publisher that was used to create the image.
2018-02-20 03:09:51 +00:00
`nil` if the machine was created from a custom image.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('sku') { should cmp '2016-Datacenter' }
2018-02-15 02:23:29 +00:00
### os\_type
2017-12-12 18:20:22 +00:00
2018-02-20 03:09:51 +00:00
Test that returns the classification in Azure of the operating system type. Usually either `Linux` or `Windows`.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('os_type') { should cmp 'Windows' }
2018-02-15 02:23:29 +00:00
### os\_disk\_name
2017-12-12 18:20:22 +00:00
Return the name of the operating system disk attached to the machine.
2018-02-20 02:30:04 +00:00
its('os_disk_name') { should cmp 'Windows-Internal-OSDisk-MD' }
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
### caching
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
Returns the type of caching that has been set on the operating system disk.
2018-02-20 02:30:04 +00:00
its('caching') { should cmp 'ReadWrite' }
2018-02-15 02:23:29 +00:00
### create\_option
2017-12-12 18:20:22 +00:00
2018-02-20 03:09:51 +00:00
When the operating system disk is created, how it was created is set as a property. This property returns how the disk was created.
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
its('create_option') { should cmp 'FromImage' }
2018-02-15 02:23:29 +00:00
### disk\_size\_gb
2017-12-12 18:20:22 +00:00
2018-02-14 01:42:39 +00:00
Returns the size of the operating system disk.
2017-12-12 18:20:22 +00:00
2018-02-20 02:30:04 +00:00
its('disk_size_gb') { should be >= 30 }
2017-03-02 10:11:18 +00:00
2018-02-15 02:23:29 +00:00
### data\_disk\_count
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
Return the number of data disks that are attached to the machine
2018-02-15 02:23:29 +00:00
### storage\_account\_type
2017-12-12 18:20:22 +00:00
This provides the storage account type for a machine that is using managed disks for the operating system disk.
2018-02-20 02:30:04 +00:00
its('storage_account_type') { should cmp 'Standard_LRS' }
2018-02-15 02:23:29 +00:00
### vm\_size
2017-12-12 18:20:22 +00:00
The size of the machine in Azure
2017-03-02 10:11:18 +00:00
2018-02-15 18:24:21 +00:00
its('vm_size') { should eq 'Standard_DS2_v2' }
2017-03-02 14:01:54 +00:00
2018-02-15 02:23:29 +00:00
### computer\_name
2017-03-02 10:11:18 +00:00
2018-02-14 01:42:39 +00:00
The name of the machine. This is what was assigned to the machine during deployment and is what _should_ be returned by the `hostname` command.
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('computer_name') { should cmp 'win-internal-1' }
2018-02-15 02:23:29 +00:00
### admin\_username
2017-03-02 10:11:18 +00:00
The admin username that was assigned to the machine
2017-12-12 18:20:22 +00:00
NOTE: Azure does not allow the use of `Administrator` as the admin username on a Windows machine
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
its('admin_username') { should cmp 'azure' }
2017-12-12 18:20:22 +00:00
2018-02-15 02:23:29 +00:00
### nic\_count
2017-12-12 18:20:22 +00:00
The number of network interface cards that have been attached to the machine
2018-02-20 02:30:04 +00:00
its('nic_count') { should eq 1 }
2018-02-15 02:23:29 +00:00
### connected\_nics
2017-12-12 18:20:22 +00:00
This returns an array of the NIC ids that are connected to the machine. This means that it possible to check that the machine has the correct NIC(s) attached and thus on the correct subnet.
2018-02-15 02:23:29 +00:00
its('connected_nics') { should include /Inspec-NIC-1/ }
2017-12-12 18:20:22 +00:00
2018-03-20 12:43:30 +00:00
Note the use of the regular expression here. This is because the NIC id is a long string that contains the subscription id, resource group, machine id as well as other things. By using the regular expression the NIC can be checked without breaking this string up. It also means that other tests can be performed.
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
An example of the id string is `/subscriptions/1e0b427a-d58b-494e-ae4f-ee558463ebbf/resourceGroups/Inspec-Azure/providers/Microsoft.Network/networkInterfaces/Inspec-NIC-1`
2017-03-02 10:11:18 +00:00
2018-02-15 02:23:29 +00:00
### password\_authentication?
2017-03-02 10:11:18 +00:00
Boolean to state of password authentication is enabled or not for the admin user.
2018-02-15 02:23:29 +00:00
its('password_authentication?') { should be false }
2017-03-02 10:11:18 +00:00
This only applies to Linux machines and will always return `true` on Windows.
2018-02-20 02:30:04 +00:00
### custom\_data
2017-12-12 18:20:22 +00:00
Boolean to state if the machine has custom data or not
2018-02-15 02:23:29 +00:00
its('custom_data') { should be true }
2017-12-12 18:20:22 +00:00
2018-02-15 02:23:29 +00:00
### ssh\_keys?
2017-12-12 18:20:22 +00:00
Boolean to state of the machine is accessible using SSH keys
2018-02-15 02:23:29 +00:00
its('ssh_keys?') { should be true }
2017-12-12 18:20:22 +00:00
2018-02-15 02:23:29 +00:00
### ssh\_key\_count
2017-03-02 10:11:18 +00:00
Returns how many SSH keys have been applied to the machine.
This only applies to Linux machines and will always return `0` on Windows.
2018-02-20 02:30:04 +00:00
its('ssh_key_count') { should eq '0' }
2018-02-15 02:23:29 +00:00
### ssh\_keys
2017-12-12 18:20:22 +00:00
Returns an array of the keys that are assigned to the machine. This is check if the correct keys are assigned.
Most SSH public keys have a signature at the end of them that can be tested. For example:
2018-02-15 02:23:29 +00:00
its('ssh_keys') { should include /azure@inspec.local/ }
2017-12-12 18:20:22 +00:00
2018-02-15 02:23:29 +00:00
### boot\_diagnostics\_storage\_uri
2017-12-12 18:20:22 +00:00
If boot diagnostics are enabled for the machine they will be saved in a storage account. This method returns the URI for the storage account.
2018-02-15 02:23:29 +00:00
its('boot_diagnostics_storage_uri') { should match 'ghjgjhgjg' }
<br>
## Matchers
2018-03-20 12:43:30 +00:00
There are a number of built in comparison operators that are available to test the result with an expected value.
2018-02-15 02:23:29 +00:00
2019-04-26 18:24:29 +00:00
For information on all that are available please refer to the [Chef InSpec Matchers Reference](https://www.inspec.io/docs/reference/matchers/) page.
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
### boot\_diagnostics?
Boolean test to see if boot diagnostics have been enabled on the machine
it { should have_boot_diagnostics }
### have\_custom\_data
Returns a boolean stating if the machine has custom data assigned to it.
it { should have_custom_data }
### have\_data\_disks
Denotes if the machine has data disks attached to it or not.
it { should have_data_disks }
2018-02-15 02:23:29 +00:00
2018-02-20 02:30:04 +00:00
### have\_managed\_osdisk
Determine if the operating system disk is a Managed Disks or not.
This test can be used in the following way:
it { should have_managed_osdisk }
### have\_nics
Returns a boolean to state if the machine has NICs connected or not.
This has can be used in the following way:
it { should have_nics }
### have\_password\_authentication
Returns a boolean to denote if the machine is accessible using a password.
it { should have_password_authentication }
### have\_ssh\_keys
Boolean to state if the machine has SSH keys assigned to it
it { should have_ssh_keys }
For a Windows machine this will always be false.
<br>
2018-02-15 02:23:29 +00:00
2017-12-12 18:20:22 +00:00
## Tags
2017-03-02 10:11:18 +00:00
2017-12-12 18:20:22 +00:00
It is possible to test the tags that have been assigned to the resource. There are a number of properties that can be called to check that it has tags, that it has the correct number and that the correct ones are assigned.
2017-03-02 10:11:18 +00:00
2018-02-15 02:23:29 +00:00
### have\_tags
2017-03-02 14:01:54 +00:00
2017-12-12 18:20:22 +00:00
This is a simple test to see if the machine has tags assigned to it or not.
2017-03-02 14:01:54 +00:00
2018-02-15 02:23:29 +00:00
it { should have_tags }
2017-03-02 14:01:54 +00:00
2018-02-15 02:23:29 +00:00
### tag\_count
2017-03-02 14:01:54 +00:00
2017-12-12 18:20:22 +00:00
Returns the number of tags that are assigned to the resource
2017-03-02 14:01:54 +00:00
2018-02-15 02:23:29 +00:00
its ('tag_count') { should eq 2 }
2017-03-02 14:01:54 +00:00
2017-12-12 18:20:22 +00:00
### tags
2017-03-02 14:01:54 +00:00
2017-12-12 18:20:22 +00:00
It is possible to check if a specific tag has been set on the resource.
2018-02-15 02:23:29 +00:00
its('tags') { should include 'Owner' }
2017-12-12 18:20:22 +00:00
2018-02-15 02:23:29 +00:00
### xxx\_tag
2017-12-12 18:20:22 +00:00
2018-03-20 12:43:30 +00:00
To get the value of the tag, a number of tests have been created from the tags that are set.
2017-12-12 18:20:22 +00:00
For example, if the following tag is set on a resource:
2018-02-20 02:30:04 +00:00
* owner: J.G. Jingleheimerschmidt
2017-12-12 18:20:22 +00:00
Then a test is available called `Owner_tag`.
2018-02-20 02:30:04 +00:00
its('owner_tag') { should cmp 'J.G. Jingleheimerschmidt' }
2017-12-12 18:20:22 +00:00
Note: The tag name is case sensitive which makes the test case sensitive. E.g. `owner_tag` does not equal `Owner_tag`.
2017-03-02 14:01:54 +00:00
2018-02-15 02:23:29 +00:00
## References
2017-03-02 10:11:18 +00:00
2018-02-20 02:30:04 +00:00
* [Azure Ruby SDK - Resources](https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_resources)
* [Virtual Machine External VM](https://github.com/chef/inspec/blob/fc990346f2438690f0ac36a9f6606e61574a79b8/test/azure/verify/controls/virtual_machine_external_vm.rb)
* [Virtual Machine Internal VM](https://github.com/chef/inspec/blob/fc990346f2438690f0ac36a9f6606e61574a79b8/test/azure/verify/controls/virtual_machine_internal_vm.rb)