Files
hunfabric/fast/project-templates/secops-anonymization-pipeline

SecOps Anonymization Pipeline

This application template offers a comprehensive and adaptable solution for constructing a SecOps pipeline for exporting raw data from a SecOps tenant, optionally anonymize this data and then import data back in a different SecOps tenant. The pipeline is built on top of various Google Cloud products.

Prerequisites

The project.yaml file describes the project-level configuration needed in terms of API activation and IAM bindings.

If you are deploying this inside a FAST-enabled organization, the file can be lightly edited to match your configuration, and then used directly in the project factory.

This Terraform can of course be deployed using any pre-existing project. In that case use the YAML file to determine the configuration you need to set on the project:

  • enable the APIs listed under services
  • grant the permissions listed under iam to the principal running Terraform, either machine (service account) or human

High level architecture

The following diagram illustrates the high-level design of the solution, which can be adapted to specific requirements via variables and/or simple terraform and Python code customizations:

SecOps Anonymization Pipeline

The use case is a SecOps deployment composed of 2 tenants (one for production and one for development/testing). There might be the need to export production data from the prod tenant and import them back in DEV (possibly anonymizing it) for rules and/or parser development, that is why this pipeline might be convenient for speeding up the data migration process.

The solution is based on a custom Python script responsible for implementing the aforementioned logic. The script leverages the new SecOps API Wrapper available also in PyPi.

Pipeline Steps

  • SecOps Export: Triggered via the corresponding TRIGGER-EXPORT action. Call SecOps Export API to trigger raw logs export on a GCS bucket based on either all the log types or one o more of them for a specific time frame. By default, the export will be for the previous day, otherwise the following parameters can be specified to change the time frame:
    • EXPORT_DATE date for the export (format %Y-%m-%d)
    • EXPORT_START_DATETIME and EXPORT_END_DATETIME start and end datetime for the export (format %Y-%m-%dT%H:%M:%SZ). This is useful for verbose log source with GB/TB of raw logs ingested on a daily basis
  • Anonymize Data: Triggered via the corresponding ANONYMIZE-DATA action. Split the exported CSV files to one or more CSV files where the size of each file is less than 60MB (which is the maximum file size supported by DLP). It also renames those files in .log for better handling by the DLP Job. It will then trigger an asynchronous DLP job to anonymize data.
  • Import Data: Triggered via the corresponding IMPORT-DATA action. Import the exported raw logs (or anonymized ones according to the pipeline configuration) data into the target SecOps tenant leveraging the new SecOps Ingestion API.

Limitations

  • The pipeline can be schedule to run on a daily basis or on-demand, being all asynchronous tasks the anonymization and/or import logs should be triggered after the export is completed successfully
  • This pipeline is built for migrating few logs between tenants, lack of multi-threading and limitations on the Cloud Function memory result in the function being able to process at most order of MB of raw logs data (no GB)
  • Currently, SecOps export API supports 3 concurrent export requests for each tenant, due to each export request being associated to eithe all log types or a specific log type this result in no more than 3 log types exported within the same export request.

Deployment

Step 0: Cloning the repository

If you want to deploy from your Cloud Shell, click on the image below, sign in if required and when the prompt appears, click on “confirm”.

Open Cloudshell

Otherwise, in your console of choice:

git clone REPO_URL

Before you deploy the architecture, you will need at least the following information (for more precise configuration see the Variables section):

  • GCP Project ID for SecOps anonymization pipeline deployment
  • SecOps tenants information:
    • GCP projects of both source and target SecOps tenants
    • SecOps customer IDs for both source and target SecOps tenants
    • SecOps deployment region for both the tenants (must be the same)
    • SecOps Forwarder ID for target tenant (this is mandatory for new ingestion APIs and requires at least an empty collector forwarder to be setup in target tenant)
    • Grant Pipeline SA Chronicle API Editor role on both source and target tenant (this might be restricred to data export permissions on source and import logs permissions on target tenant)

Step 2: Prepare the variables

Once you have the required information, head back to your cloned repository. Make sure youre in the directory of this tutorial (where this README is in).

Configure the Terraform variables in your terraform.tfvars file. See sample TF variables in README.md file as starting point - just copy them to a new terraform.tfvars file and update accordingly. See the variables documentation below for more information.

Step 3: Prepare the DLP template

When anonymization is required (variable skip_anonymization is false) a Data Loss prevention API configuration is required for the corresponding DLP job.

By default, the blueprint will provision a very basic DLP inspect and de-identify template for identifying and masking with just a sample value common PII information such as email addresses, person names, IP addresses and so on, more information available on the corresponding TF script in dlp.tf.

In general a more advanced configuration is required for custom info types or a better de-identification template based on multiple anonymized values for the same info type (more email addresses or IP addresses to guarantee differentiation), in that case you can build your own DLP templates and pass them to the anonymization pipeline leveraging the dlp_config variable.

Step 4: Deploy resources

Initialize your Terraform environment and deploy the resources:

terraform init
terraform apply

Step 5: Test solution

Test the solution triggering an export from the Cloud Scheduler page, after few hours (according to the size of the export) logs should be available on secops-export bucket. Please check for any issue during export using the corresponding APIs and the export ID.

Variables

name description type required default
prefix Prefix used for resource names. string
project_id Project id that references existing project. string
secops_config SecOps config. object({…})
anonymization_scheduler Schedule for triggering export, anonymization and import of data. object({…}) {…}
cloud_function_config Optional Cloud Function configuration. object({…}) {}
dlp_config Data Loss prevention configuration. object({…}) null
project_create_config Create project instead of using an existing one. object({…}) null
regions Regions: primary for all resources and secondary for clouds scheduler since the latter is available in few regions. object({…}) {…}
skip_anonymization Whether to skip anonymization step and just import data exported from source tenant. bool false

Outputs

name description sensitive
function_sa Chronicle Anonymization function service account.

Test

module "test" {
  source = "./fabric/fast/project-templates/secops-anonymization-pipeline"
  secops_config = {
    region            = "europe"
    alpha_apis_region = "eu"
    source_tenant = {
      gcp_project = "SOURCE_PROJECT_ID"
      customer_id = "xxx-xxxxxx-xxxxx"
    }
    target_tenant = {
      gcp_project  = "TARGET_PROJECT_ID"
      customer_id  = "xxx-xxxxxx-xxxxx"
      forwarder_id = "xxxxxxxxx"
    }
  }
  skip_anonymization = false
  prefix             = "pre"
  project_id         = "gcp-project-id"
  project_create_config = {
    billing_account = "12345-ABCDE-12345"
  }
  regions = {
    primary   = "europe-west1"
    secondary = "europe-west1"
  }
}
# tftest modules=7 resources=51