azure_sentinel_incidents_resource Resource
Use the azure_sentinel_incidents_resource
InSpec audit resource to test 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 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.
For api related info : 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
, workspace_name
must be given as 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 that the targeted resource resides in.
workspace_name
- Name for the workspace that you want to create your Azure Sentinel incident in.
incident_id
- The Azure Sentinel incident name.
All the parameter sets needs be provided for a valid query:
resource_group
,workspace_name
andincident_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 to.
properties.owner.userPrincipalName
- The user principal name of the user the incident is assigned to.
properties.owner.assignedTo
- The name of the user the incident is assigned to.
Examples
Test 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
Test That 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
Test That An Azure Sentinel Incident Does Not Exist.
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.