azure_express_route_circuits Resource
Use the azure_express_route_circuits
InSpec audit resource to test properties of Azure ExpressRoute circuits for a resource group.
Azure Rest API Version, Endpoint, And HTTP Client Parameters
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.
Installation
This resource is available in the Chef InSpec Azure resource pack.
See the Chef InSpec documentation on cloud platforms for information on configuring your Azure environment for InSpec and creating an InSpec profile that uses the InSpec Azure resource pack.
Syntax
An azure_express_route_circuits
resource block returns all Azure ExpressRoute circuits within a resource group.
describe azure_express_route_circuits(resource_group: 'RESOURCE_GROUP') do
#...
end
Parameters
resource_group
- The Azure resource group that the targeted resources reside in.
Properties
names
- A list of name the resource group in which to create the ExpressRoute circuit.
Field:
name
ids
- A list of the ExpressRoute circuit IDs.
Field:
id
tags
- A list of
tag:value
pairs of the ExpressRoute circuit resources. Field:
tags
provisioning_states
- The provisioning states of the ExpressRoute circuit resources.
Field:
provisioning_state
types
- The types of all the ExpressRoute circuit resources.
Field:
type
locations
- The locations of the ExpressRoute circuit resources.
Field:
location
service_provider_bandwidth_in_mbps
- A list of the bandwidths in Mbps of the circuits when a circuit is provisioned on an ExpressRoutePort resource.
Field:
service_provider_bandwidth_in_mbps
service_provider_peering_locations
- A list of The name of the peering location and not the Azure resource location.
Field:
service_provider_peering_location
service_provider_names
- The name of the ExpressRoute Service Provider.
Field:
service_provider_name
service_keys
- The ServiceKeys of the ExpressRoute circuit resources.
Field:
service_key
stags
- The identifiers of the circuit traffic. Outer tag for QinQ encapsulation.
Field:
stag
global_reach_enabled
- A list of The ExpressRoute circuit allowGlobalReachEnable.
Field:
global_reach_enabled
gateway_manager_etags
- A list of The GatewayManager Etags in the ExpressRoute circuit resources.
Field:
gateway_manager_etag
allow_classic_operations
- A list of indicating whether “Allow Classic Operations” in the ExpressRoute circuit resources is set to
true
orfalse
. Field:
allow_classic_operation
circuit_provisioning_states
- A list of State of express circuitHostName creation. Valid values are:
Enabled
orDisabled
. Field:
circuit_provisioning_state
sku_names
- A list of the SKU names of the ExpressRoute circuits.
Field:
sku_name
sku_tiers
- A list of the SKU tiers of the ExpressRoute circuits. Possible values are
Basic
,Local
,Standard
, orPremium
. Field:
sku_tier
sku_family
- A list of the SKU families of the ExpressRoute circuits. Possible values are:
UnlimitedData
andMeteredData
. Field:
sku_family
Note
See the documentation on FilterTable for information on using filter criteria on plural resources.
Examples
Ensure that an ExpressRoute circuit has a Succeeded
provisioning state.
describe azure_express_route_circuits(resource_group: 'RESOURCE_GROUP') do
its('provisioning_states') { should include 'Succeeded' }
end
Test than an ExpressRoute circuit has a specific location.
describe azure_express_route_circuits(resource_group: 'RESOURCE_GROUP') do
its('location') { should include 'EXPRESS_ROUTE_CIRCUIT_LOCATION' }
end
Matchers
This InSpec audit resource has the following special matchers. For a full list of available matchers, please visit our Universal Matchers page.
exists
# Should exist if express_route_circuits are in the resource group
describe azure_express_route_circuits(resource_group: 'RESOURCE_GROUP') do
it { should exist }
end
# Should not exist if no express_route_circuits are in the resource group
describe azure_express_route_circuits(resource_group: 'RESOURCE_GROUP') do
it { should_not exist }
end
Azure Permissions
Your Service Principal must be set up with at least a contributor
role on the subscription you wish to test.
Was this page helpful?