azure_policy_insights_query_results Resource
Use the azure_policy_insights_query_results InSpec audit resource to test properties and configuration of multiple Azure Policy Insights query results.
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, this resource uses the latest version.
For more information, refer to the azure_generic_resource document.
Unless defined, this resource uses the azure_cloud global endpoint and default values for the HTTP client.
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_policy_insights_query_results resource block returns all policy insights query results, either compliant, or not within a subscription.
describe azure_policy_insights_query_results do
it { should exist }
end
or
describe azure_policy_insights_query_results do
it { should exist }
end
Parameters
This resource does not require any parameters.
Properties
resource_ids- A list of the unique resource IDs.
Field:
resource_idpolicy_assignment_ids- A list of all Policy assignment IDs.
Field:
policyAssignment_idpolicy_definition_ids- A list of all Policy definition IDs.
Field:
policyDefinition_idis_compliant- A list of boolean flags which states whether the resource is compliant or not.
Field:
is_compliantsubscription_ids- A list of Subscription IDs.
Field:
subscription_idresource_types- A list of Resource types.
Field:
resource_typeresource_locations- A list of Resource locations.
Field:
resource_locationresource_groups- A list of Resource group names.
Field:
resource_groupresource_tags- A list of resource tags.
Field:
resource_tagspolicy_assignment_names- A list of Policy assignment names.
Field:
policy_assignment_namepolicy_definition_names- A list of Policy definition names.
Field:
policy_definition_namepolicy_assignment_scopes- A list of Policy assignment scopes.
Field:
policy_assignment_scopepolicy_assignment_parameters- A list of policy assignment parameter.
Field:
policy_assignment_parameterspolicy_definition_actions- A list of Policy definition actions.
Field:
policy_definition_actionpolicy_definition_categories- A list of Policy definition categories.
Field:
policy_definition_categorymanagement_group_ids- A list of management group IDs.
Field:
management_group_idscompliance_states- A list compliance state of the resource.
Field:
compliance_statecompliance_reason_codes- A list of reason codes recorded for failure.
Field:
compliance_reason_code
Note
See the documentation on FilterTable for information on using filter criteria on plural resources.
Examples
Check if a specific resource type is present.
describe azure_policy_insights_query_results do
its('resource_types') { should include 'Microsoft.VirtualMachineImages/imageTemplates' }
end
Filters the results to include only those Policy Insights query results which include the given resource location.
describe azure_policy_insights_query_results.where(resource_location: 'RESOURCE_LOCATION') do
it { should exist }
end
Filters the results to include only the compliant Policy Insights query results.
describe azure_policy_insights_query_results.where(is_compliant: true) do
it { should exist }
its('count') { should be 120 }
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
The control will pass if the filter returns at least one result. Use should_not if you expect zero matches.
describe azure_policy_insights_query_results do
it { should exist }
end
Azure Permissions
Your Service Principal must be set up with at least a contributor role on the subscription you wish to test.