title | platform |
---|---|
About the azure_virtual_machine_disk Resource |
azure |
Use the azure_virtual_machine_disk
InSpec audit resource to test properties and configuration of an Azure disk.
This resource interacts with api versions supported by the resource provider.
The api_version
can be defined as a resource parameter.
If not provided, the latest version will be used.
For more information, refer to azure_generic_resource
.
Unless defined, azure_cloud
global endpoint, and default values for the http client will be used.
For more information, refer to the resource pack README.
This resource is available in the InSpec Azure resource pack.
For an example inspec.yml
file and how to set up your Azure credentials, refer to resource pack README.
resource_group
and name
or the resource_id
must be given as a parameter.
describe azure_virtual_machine_disk(resource_group: 'inspec-resource-group-9', name: 'example_disk') do
it { should exist }
end
describe azure_virtual_machine_disk(resource_id: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/disks/{diskName}') do
it { should exist }
end
Name | Description |
---|---|
resource_group | Azure resource group that the targeted resource resides in. MyResourceGroup |
name | Name of the disk to test. MyDisk |
Either one of the parameter sets can be provided for a valid query:
resource_id
resource_group
andname
Property | Description |
---|---|
encryption_enabled* | Indicates whether the properties.EncryptionSettingsCollection.enabled is true or false . Note that this will return nil unless the encryption status is defined on the resource explicitly. |
rest_encryption_type | The type of key used to encrypt the data of the disk. |
sku | The SKU (pricing tier) of the disk. |
managedBy | A relative URI containing the ID of the VM that has the disk attached. |
properties.diskSizeBytes | The size of the disk in bytes. |
* The disk can still be encrypted at rest with a platform key, even though the encryption_enabled
is nil
. It is recommended to see here for more details on disk encryption.
For properties applicable to all resources, such as type
, name
, location
, id
, properties
, refer to azure_generic_resource
.
Also, refer to Azure documentation for other properties available.
Any attribute in the response may be accessed with the key names separated by dots (.
), eg. properties.<attribute>
.
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
it { should exist }
end
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'i-dont-exist') do
it { should_not exist }
end
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
its('managedBy') { should cmp '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/virtualMachines/{vmName}' }
end
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
its('rest_encryption_type') { should cmp 'EncryptionAtRestWithPlatformKey' }
end
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
its('properties.diskSizeBytes') { should cmp 136367308800 }
end
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
Test if a disk is attached to a virtual machine.
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
it { should be_attached }
end
# If we expect a resource to always exist
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
it { should exist }
end
# If we expect a resource to never exist
describe azure_virtual_machine_disk(resource_group: 'my-rg', name: 'os_disk') do
it { should_not exist }
end
Your Service Principal must be setup with a contributor
role on the subscription you wish to test.