azure_sentinel_incidents_resource Resource
Use the azure_sentinel_incidents_resource
InSpec audit resource to test the properties of an Azure Azure Sentinel incident.
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 is used. For more information, refer to azure_generic_resource.
Unless defined, the azure_cloud
global endpoint and default values for the HTTP client are used.
For more information, refer to the resource pack README.
For API-related information, refer to Azure Azure Sentinel incident Docs.
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
resource_group
and incident_id
, and workspace_name
are required parameters.
describe azure_sentinel_incidents_resource(resource_group: 'RESOURCE_GROUP', workspace_name: 'WORKSPACE_NAME', incident_id: 'INCIDENT_ID') do
#...
end
Parameters
resource_group
- Azure resource group where the targeted resource resides.
workspace_name
- Name the workspace where you want to create the Azure Sentinel incident.
incident_id
- The Azure Sentinel incident name.
The parameter sets that need to be provided for a valid query are resource_group
, workspace_name
, and incident_id
.
Properties
name
- Name of the Azure resource to test.
id
- The Azure Sentinel incident type.
properties
- The properties of the resource.
properties.severity
- The severity of the incident.
properties.status
- The status of the incident.
properties.owner.email
- The email of the user the incident is assigned.
properties.owner.userPrincipalName
- The user principal name of the user the incident is assigned.
properties.owner.assignedTo
- The name of the user the incident is assigned.
Examples
Test to ensure the properties of an incident
describe azure_sentinel_incidents_resource(resource_group: 'RESOURCE_GROUP', workspace_name: 'WORKSPACE_NAME', incident_id: 'INCIDENT_ID') do
it { should exist }
its('name') { should eq 'AZURE_RESOURCE_NAME' }
its('type') { should eq 'Microsoft.SecurityInsights/Incidents' }
its('properties.severity') { should eq 'Informational' }
its('properties.status') { should eq 'New' }
its('properties.owner.email') { should eq 'OWNER_EMAIL' }
its('properties.owner.userPrincipalName') { should eq 'PRINCIPAL_NAME' }
its('properties.owner.assignedTo') { should eq 'OWNER_NAME' }
end
Tests an Azure Sentinel Incident exists
describe azure_sentinel_incidents_resource(resource_group: 'RESOURCE_GROUP', workspace_name: 'WORKSPACE_NAME', incident_id: 'INCIDENT_ID') do
it { should exist }
end
Tests an Azure Sentinel Incident does not exists
describe azure_sentinel_incidents_resource(resource_group: 'RESOURCE_GROUP', workspace_name: 'WORKSPACE_NAME', incident_id: 'INCIDENT_ID') do
it { should_not exist }
end
Test properties of a sentinel incident
describe azure_sentinel_incidents_resource(resource_group: 'RESOURCE_GROUP', workspace_name: 'WORKSPACE_NAME', incident_id: 'INCIDENT_ID') do
its('name') { should eq 'INCIDENT_ID' }
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?