title | platform |
---|---|
About the azure_locks Resource |
azure |
Use the azure_locks
InSpec audit resource to test properties and configuration of all management locks for an Azure resource or any level below it.
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.
An azure_locks
resource block returns all management locks, either within a Resource Group (if provided), or within an entire Subscription.
describe azure_locks do
it { should exist }
end
or
describe azure_locks(resource_group: 'my-rg') do
it { should exist }
end
Also, at resource level test can be done providing the following identifiers: resource_group
, resource_name
and resource_type
or the resource_id
.
describe azure_locks(resource_group: 'rg-1', resource_name: 'my-VM', resource_type: 'Microsoft.Compute/virtualMachines') do
it { should exist }
end
or
describe azure_locks(resource_id: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/virtualMachines/{vmName}') do
it { should exist }
end
Name | Description |
---|---|
resource_group | Azure resource group that the targeted resource resides in. MyResourceGroup |
resource_name | Name of the Azure resource on which the management locks are being tested. MyVM |
resource_type | Type of the Azure resource on which the management locks are being tested. Microsoft.Compute/virtualMachines |
resource_id | The unique resource ID of the Azure resource on which the management locks are being tested. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/virtualMachines/{vmName} |
Either one of the parameter sets can be provided for a valid query:
resource_id
resource_group
,resource_name
andresource_type
resource_group
- None for a subscription level test.
Property | Description | Filter Criteria* |
---|---|---|
ids | A list of the unique resource ids of the management locks. | id |
names | A list of names of all the management locks being interrogated. | name |
properties | A list of properties for all the management locks being interrogated. | properties |
* For information on how to use filter criteria on plural resources refer to FilterTable usage.
describe azure_locks(resource_group: 'rg-1', resource_name: 'my-VM', resource_type: 'Microsoft.Compute/virtualMachines') do
its('names') { should include 'production_agents' }
end
describe azure_locks.where{ name.include?('production') } do
it { should exist }
end
azure_virtual_machines.ids.each do |id|
describe azure_locks(resource_id: id) do
it { should exist }
end
end
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
The control will pass if the filter returns at least one result. Use should_not
if you expect zero matches.
describe azure_locks(resource_group: 'rg-1', resource_name: 'my-VM', resource_type: 'Microsoft.Compute/virtualMachines') do
it { should exist }
end
Your Service Principal must be setup with a contributor
role on the subscription you wish to test.