GKE Audit Log Integration Using Terraform
Overview
Lacework integrates with GCP Audit Logs in an event-based streaming pull mode for monitoring GKE admin read, data read, and data write events. This topic describes how to integrate with GCP by running Lacework Terraform modules from Google Cloud Shell.
If you are new to the Lacework Terraform Provider, or Lacework Terraform Modules, read Terraform for Lacework Overview to learn the basics on how to configure the provider and more.
Resources
Organization level integrations cover all existing projects in the organization, and automatically add any new projects added after the initial integration.
Project level integrations cover only specific projects and any new projects must be added as required.
To integrate at the organization or project level, Lacework requires the following resources be provisioned in Google Cloud:
- Google Cloud Project - A project to contain the required cloud resources with billing enabled. When integrating at the organization level, Lacework recommends that you create a project specifically for Lacework resources. When integrating at the project level, all required resources for Lacework may be provisioned within the project being integrated.
- Google Pub/Sub Topic - Topic for GKE Audit Logs events
- Google Pub/Sub Subscription - Subscription for Lacework to pull the GKE Audit Log events from
- Google Logging Sink - To export Cloud Audit Logs to the Pub/Sub topic
- Service Account for Lacework - A service account will be created to provide Lacework read-only access to Google Cloud Platform with the following roles:
- Project/Organization Level Integration
roles/pubsub.publisher
roles/pubsub.subscriber
- Project/Organization Level Integration
For organization level integrations, follow the steps in Integrate GKE Audit Logs at the organization level.
For project level integrations, follow the steps in Integrate GKE Audit Logs at the project level.
Requirements
Google Cloud Shell inherits the permissions of the user running Cloud Shell. Before beginning, determine whether the integration between Google Cloud and Lacework will be at the organization level or the project level, and then ensure the user account running Google Cloud Shell has the following permissions:
- Organization level integrations
roles/owner
- For organization level integrations, it is recommended to create a dedicated Google Cloud project to contain the required resources. The user account used to run Google Cloud Shell must have 'Owner' permissions for that project.roles/resourcemanager.organizationAdmin
roles/iam.organizationRoleAdmin
- Project level integrations
roles/owner
- For project level integrations, it is recommended to use the project being integrated to store all of the required resources. The user account used to run Google Cloud Shell must have 'Owner' permissions for every project being integrated into Lacework.
In addition to Google Cloud permissions, the Terraform provider for Lacework must be configured to authenticate with the Lacework API using a Lacework API key and secret access key. For more information on configuring the Terraform Provider for Lacework, visit Terraform for Lacework Overview.
Module Inputs Reference
For an up-to-date guide on all available configuration inputs, refer to the Terraform Registry documentation:
Module Dependencies
Lacework Terraform modules for GCP have the following dependencies that will be installed when running terraform init
:
For detailed information on these dependencies, visit Lacework on the Terraform Registry.
Google Cloud Shell Configuration
Google Cloud Shell is an embedded terminal/command-line interface that you can use within the Google Console. Google Cloud Shell comes with tools pre-installed like the Google Cloud SDK, gcloud
command-line tool, and Terraform pre-installed to manage and automate your projects and resources in your environment.
Lacework provides a robust command-line interface that generates Terraform code, installs the Terraform CLI (if not already installed), and can run Terraform inside Cloud Shell.
Ingested Logs
Lacework ingests Admin Activity logs and Data Access logs. Admin Activity logs are enabled by GCP by default. You may have to enable Data Access logs at an additional cost from GCP to access the following event groups:
- ADMIN_READ: access to Kubernetes metadata and configuration
- DATA_READ: access to Kubernetes resources
- DATA_WRITE: creation and changes to Kubernetes resources
Launch Google Cloud Shell within Google Console
To open Google Cloud Shell, click the Cloud Shell icon in the header bar of the Google Console, and it will launch the Cloud Shell in a pane at the bottom of the browser.
Install the Lacework CLI in Google Cloud Shell
The Terraform provider for Lacework leverages the configuration from the Lacework CLI to authenticate with the Lacework API and configure accounts. Run the following commands to install the Lacework CLI:
mkdir -p "$HOME"/bin
curl https://raw.githubusercontent.com/lacework/go-sdk/main/cli/install.sh | bash -s -- -d "$HOME"/bin
When the script completes, type exit
followed by enter to exit your shell. After the shell exits, open Cloud Shell again and the Lacework CLI will be ready for use.
Create Lacework API Key
The Lacework CLI requires an API key and secret to authenticate with Lacework. Lacework API keys can be created by Lacework account administrators via the Lacework Console. For more information, go to API Access Keys.
- Log in to the Lacework Console.
- Click Settings > Configuration > API keys.
- Click + Add New.
- Enter a name for the key and an optional description.
- Click Save.
- Click the ... icon and then Download to save the API key file locally.
The contents of your API key contain a keyId
secret
, subAccount
, and account
:
{
"keyId": "ACCOUNT_ABCEF01234559B9B07114E834D8570F567C824039756E03",
"secret": "_abc1234e243a645bcf173ef55b837c19",
"subAccount": "myaccount",
"account": "myaccount.lacework.net"
}
Configure the Lacework CLI
Google Cloud Shell lets you drag-and-drop the generated KEY.json
to upload it automatically.
To configure the CLI with the API key downloaded from the previous step, use the lacework configure
command in Cloud Shell and provide the following:
account
: Account subdomain of URL (i.e.YourAccount.lacework.net
)api_key
: API Access Keyapi_secret
: API Access Secret
Run the command:
user@cloudshell:~ $ lacework configure -j CUSTOMER_EED10DA9136E9F763477FF5933464DD0C3DADF2CDDEFABC.json
▸ Account: your_account_name
▸ Access Key ID: CUSTOMER_EED10DA9136E9F763477FF5933464DD0C3DADF2CDDEFABC
▸ Secret Access Key: (*****************************26a0)
You are all set!
For more information, see Lacework CLI documentation.
Deployment Scenarios
- Integrate GKE Audit Logs at the organization level - This deployment scenario configures a new Lacework GKE Audit Log integration for the entire organization.
- Integrate GKE Audit Logs at the project level - This deployment scenario configures a new Lacework GKE Audit Log integration at the single project level.
Integrate GKE Audit Logs at the Organization Level
The following section covers integrating Google Cloud and Lacework for analysis of GKE Audit Logs at the organization level.
Create a GCP Project Using the GCP Console
When creating an integration at the GCP organization level, Lacework recommends having a dedicated project to provision the required resources for the integration between Google Cloud and Lacework. Create the GCP project before running Terraform.
- Log in to the Google Cloud Console.
- Select the project drop-down and click New Project.
- Give the project a Project Name, select a Billing Account, select the Organization you are integrating.
- Click Create to create the new project.
Configure Project Owner Permissions to User Account
These next steps configure role/owner
permission on the GCP project for the user running Google Cloud Shell.
- In the Google Cloud Console, select the project created for Lacework resources.
- Click the navigation menu and select IAM & Admin > IAM.
- Filter the list and find the user account that will be used to run Google Cloud Shell.
- Click Edit Member and then apply
role/owner
. - Click Save.
Run the Lacework CLI in Cloud Shell
Inside Google Cloud Shell, run the following Lacework CLI command:
lacework generate k8s gke \
--organization_integration \
--organization_id OrganizationId \
--project_id ProjectId \
--noninteractive --apply
For details about the lacework generate k8s gke
command, see the CLI documention.
note
Lacework Terraform modules provide a number of inputs for customization. For the complete list of inputs for each module, see the documentation on the Terraform registry.
Validate the Configuration
To confirm that the cloud account integrations are working, use the Lacework CLI or log in to the Lacework Console.
To validate the integration using the CLI, run the lacework cloud-account list
command. GKE integrations are listed as GcpGkeAudit
.
To validate the integration using the Lacework Console, log in to your account and go to Settings > Integrations > Cloud Accounts
Integrate GKE Audit Logs at the Project Level
The following section covers integrating Google Cloud and Lacework for analysis of GKE Audit Logs at the project level.
Configure Project Owner Permissions for User Account
These next steps configure role/owner
permission on the GCP project for the user running Google Cloud Shell.
- Log in to the Google Cloud Console.
- Select the project being integrated to Lacework from the project selector at the top of the console.
- Click the navigation menu and select IAM & Admin > IAM.
- Filter the list and find the user account that will be used to run Google Cloud Shell.
- Click Edit Member and then apply
role/owner
. - Click Save.
Run the Lacework CLI in Cloud Shell
Inside Google Cloud Shell, run the following Lacework CLI command:
lacework generate k8s gke \
--project_id ProjectId \
--noninteractive --apply
note
Lacework Terraform modules provide a number of inputs for customization. Visit the documentation on the Terraform registry for the complete list of inputs for each module.
Validate the Configuration
To confirm that the cloud account integrations are working, use the Lacework CLI or log in to the Lacework Console.
To validate the integration using the CLI, run the lacework cloud-account list
command. GKE integrations are listed as GcpGkeAudit
.
To validate the integration using the Lacework Console, log in to your account and go to Settings > Integrations > Cloud Accounts