title | platform |
---|---|
About the azure_virtual_networks Resource |
azure |
Use the azure_virtual_networks
InSpec audit resource to test properties related to virtual networks within your subscription.
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.
This resource first became available in X.Y.Z of the InSpec Azure resource pack.
An azure_virtual_networks
resource block returns all Azure virtual networks, either within a Resource Group (if provided), or within an entire Subscription.
describe azure_virtual_networks do
#...
end
or
describe azure_virtual_networks(resource_group: 'my-rg') do
#...
end
resource_group
(Optional)
Property | Description | Filter Criteria* |
---|---|---|
ids | A list of the unique resource ids. | id |
locations | A list of locations for all the virtual networks. | location |
names | A list of all the virtual network names. | name |
tags | A list of tag:value pairs defined on the resources. |
tags |
etags | A list of etags defined on the resources. | etag |
* For information on how to use filter criteria on plural resources refer to FilterTable usage.
describe azure_virtual_networks(resource_group: 'MyResourceGroup') do
it { should exist }
end
# Insist that MyVnetName exists
describe azure_virtual_networks(resource_group: 'MyResourceGroup').where(name: 'MyVnetName') do
it { should exist }
end
# Insist that you have at least one virtual network that starts with 'prefix'
describe azure_virtual_networks(resource_group: 'MyResourceGroup').where { name.include?('project_A') } do
it { should exist }
end
Filters the Networks at Azure API to Only Those that Match the Given Name via Generic Resource (Recommended)
# Fuzzy string matching
describe azure_generic_resources(resource_group: 'MyResourceGroup', resource_provider: 'Microsoft.Network/virtualNetworks', substring_of_name: 'project_A') do
it { should exist }
end
# Exact name matching
describe azure_generic_resources(resource_group: 'MyResourceGroup', resource_provider: 'Microsoft.Network/virtualNetworks', name: 'MyVnetName') do
it { should exist }
end
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
# Should not exist if no virtual networks are in the resource group
describe azure_virtual_networks(resource_group: 'MyResourceGroup') do
it { should_not exist }
end
Your Service Principal must be setup with a contributor
role on the subscription you wish to test.