1. Packages
  2. Lacework Provider
  3. API Docs
  4. IntegrationGcpGkeAuditLog
lacework 2.0.6 published on Monday, Apr 14, 2025 by lacework

lacework.IntegrationGcpGkeAuditLog

Explore with Pulumi AI

Use this resource to configure an GCP GKE Audit Log integration to analyze GKE audit logs.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as lacework from "@pulumi/lacework";

const accountAbc = new lacework.IntegrationGcpGkeAuditLog("accountAbc", {
    credentials: {
        clientEmail: "email@abc-project-name.iam.gserviceaccount.com",
        clientId: "123456789012345678900",
        privateKey: `-----BEGIN PRIVATE KEY-----
 ... -----END PRIVATE KEY-----

`,
        privateKeyId: "1234abcd1234abcd1234abcd1234abcd1234abcd",
    },
    integrationType: "PROJECT",
    projectId: "ABC-project-id",
    subscription: "projects/ABC-project-id/subscriptions/example-subscription",
});
Copy
import pulumi
import pulumi_lacework as lacework

account_abc = lacework.IntegrationGcpGkeAuditLog("accountAbc",
    credentials={
        "client_email": "email@abc-project-name.iam.gserviceaccount.com",
        "client_id": "123456789012345678900",
        "private_key": """-----BEGIN PRIVATE KEY-----
 ... -----END PRIVATE KEY-----

""",
        "private_key_id": "1234abcd1234abcd1234abcd1234abcd1234abcd",
    },
    integration_type="PROJECT",
    project_id="ABC-project-id",
    subscription="projects/ABC-project-id/subscriptions/example-subscription")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/lacework/v2/lacework"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := lacework.NewIntegrationGcpGkeAuditLog(ctx, "accountAbc", &lacework.IntegrationGcpGkeAuditLogArgs{
			Credentials: &lacework.IntegrationGcpGkeAuditLogCredentialsArgs{
				ClientEmail:  pulumi.String("email@abc-project-name.iam.gserviceaccount.com"),
				ClientId:     pulumi.String("123456789012345678900"),
				PrivateKey:   pulumi.String("-----BEGIN PRIVATE KEY-----\n ... -----END PRIVATE KEY-----\n\n"),
				PrivateKeyId: pulumi.String("1234abcd1234abcd1234abcd1234abcd1234abcd"),
			},
			IntegrationType: pulumi.String("PROJECT"),
			ProjectId:       pulumi.String("ABC-project-id"),
			Subscription:    pulumi.String("projects/ABC-project-id/subscriptions/example-subscription"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Lacework = Pulumi.Lacework;

return await Deployment.RunAsync(() => 
{
    var accountAbc = new Lacework.IntegrationGcpGkeAuditLog("accountAbc", new()
    {
        Credentials = new Lacework.Inputs.IntegrationGcpGkeAuditLogCredentialsArgs
        {
            ClientEmail = "email@abc-project-name.iam.gserviceaccount.com",
            ClientId = "123456789012345678900",
            PrivateKey = @"-----BEGIN PRIVATE KEY-----
 ... -----END PRIVATE KEY-----

",
            PrivateKeyId = "1234abcd1234abcd1234abcd1234abcd1234abcd",
        },
        IntegrationType = "PROJECT",
        ProjectId = "ABC-project-id",
        Subscription = "projects/ABC-project-id/subscriptions/example-subscription",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.lacework.IntegrationGcpGkeAuditLog;
import com.pulumi.lacework.IntegrationGcpGkeAuditLogArgs;
import com.pulumi.lacework.inputs.IntegrationGcpGkeAuditLogCredentialsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var accountAbc = new IntegrationGcpGkeAuditLog("accountAbc", IntegrationGcpGkeAuditLogArgs.builder()
            .credentials(IntegrationGcpGkeAuditLogCredentialsArgs.builder()
                .clientEmail("email@abc-project-name.iam.gserviceaccount.com")
                .clientId("123456789012345678900")
                .privateKey("""
-----BEGIN PRIVATE KEY-----
 ... -----END PRIVATE KEY-----

                """)
                .privateKeyId("1234abcd1234abcd1234abcd1234abcd1234abcd")
                .build())
            .integrationType("PROJECT")
            .projectId("ABC-project-id")
            .subscription("projects/ABC-project-id/subscriptions/example-subscription")
            .build());

    }
}
Copy
resources:
  accountAbc:
    type: lacework:IntegrationGcpGkeAuditLog
    properties:
      credentials:
        clientEmail: email@abc-project-name.iam.gserviceaccount.com
        clientId: '123456789012345678900'
        privateKey: |+
          -----BEGIN PRIVATE KEY-----
           ... -----END PRIVATE KEY-----          

        privateKeyId: 1234abcd1234abcd1234abcd1234abcd1234abcd
      integrationType: PROJECT
      projectId: ABC-project-id
      subscription: projects/ABC-project-id/subscriptions/example-subscription
Copy

Create IntegrationGcpGkeAuditLog Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IntegrationGcpGkeAuditLog(name: string, args: IntegrationGcpGkeAuditLogArgs, opts?: CustomResourceOptions);
@overload
def IntegrationGcpGkeAuditLog(resource_name: str,
                              args: IntegrationGcpGkeAuditLogArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def IntegrationGcpGkeAuditLog(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              credentials: Optional[IntegrationGcpGkeAuditLogCredentialsArgs] = None,
                              integration_type: Optional[str] = None,
                              project_id: Optional[str] = None,
                              subscription: Optional[str] = None,
                              enabled: Optional[bool] = None,
                              integration_gcp_gke_audit_log_id: Optional[str] = None,
                              name: Optional[str] = None,
                              organization_id: Optional[str] = None,
                              retries: Optional[float] = None)
func NewIntegrationGcpGkeAuditLog(ctx *Context, name string, args IntegrationGcpGkeAuditLogArgs, opts ...ResourceOption) (*IntegrationGcpGkeAuditLog, error)
public IntegrationGcpGkeAuditLog(string name, IntegrationGcpGkeAuditLogArgs args, CustomResourceOptions? opts = null)
public IntegrationGcpGkeAuditLog(String name, IntegrationGcpGkeAuditLogArgs args)
public IntegrationGcpGkeAuditLog(String name, IntegrationGcpGkeAuditLogArgs args, CustomResourceOptions options)
type: lacework:IntegrationGcpGkeAuditLog
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IntegrationGcpGkeAuditLogArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. IntegrationGcpGkeAuditLogArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationGcpGkeAuditLogArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationGcpGkeAuditLogArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. IntegrationGcpGkeAuditLogArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var integrationGcpGkeAuditLogResource = new Lacework.IntegrationGcpGkeAuditLog("integrationGcpGkeAuditLogResource", new()
{
    Credentials = new Lacework.Inputs.IntegrationGcpGkeAuditLogCredentialsArgs
    {
        ClientEmail = "string",
        ClientId = "string",
        PrivateKey = "string",
        PrivateKeyId = "string",
    },
    IntegrationType = "string",
    ProjectId = "string",
    Subscription = "string",
    Enabled = false,
    IntegrationGcpGkeAuditLogId = "string",
    Name = "string",
    OrganizationId = "string",
    Retries = 0,
});
Copy
example, err := lacework.NewIntegrationGcpGkeAuditLog(ctx, "integrationGcpGkeAuditLogResource", &lacework.IntegrationGcpGkeAuditLogArgs{
Credentials: &.IntegrationGcpGkeAuditLogCredentialsArgs{
ClientEmail: pulumi.String("string"),
ClientId: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyId: pulumi.String("string"),
},
IntegrationType: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Subscription: pulumi.String("string"),
Enabled: pulumi.Bool(false),
IntegrationGcpGkeAuditLogId: pulumi.String("string"),
Name: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
Retries: pulumi.Float64(0),
})
Copy
var integrationGcpGkeAuditLogResource = new IntegrationGcpGkeAuditLog("integrationGcpGkeAuditLogResource", IntegrationGcpGkeAuditLogArgs.builder()
    .credentials(IntegrationGcpGkeAuditLogCredentialsArgs.builder()
        .clientEmail("string")
        .clientId("string")
        .privateKey("string")
        .privateKeyId("string")
        .build())
    .integrationType("string")
    .projectId("string")
    .subscription("string")
    .enabled(false)
    .integrationGcpGkeAuditLogId("string")
    .name("string")
    .organizationId("string")
    .retries(0)
    .build());
Copy
integration_gcp_gke_audit_log_resource = lacework.IntegrationGcpGkeAuditLog("integrationGcpGkeAuditLogResource",
    credentials={
        "client_email": "string",
        "client_id": "string",
        "private_key": "string",
        "private_key_id": "string",
    },
    integration_type="string",
    project_id="string",
    subscription="string",
    enabled=False,
    integration_gcp_gke_audit_log_id="string",
    name="string",
    organization_id="string",
    retries=0)
Copy
const integrationGcpGkeAuditLogResource = new lacework.IntegrationGcpGkeAuditLog("integrationGcpGkeAuditLogResource", {
    credentials: {
        clientEmail: "string",
        clientId: "string",
        privateKey: "string",
        privateKeyId: "string",
    },
    integrationType: "string",
    projectId: "string",
    subscription: "string",
    enabled: false,
    integrationGcpGkeAuditLogId: "string",
    name: "string",
    organizationId: "string",
    retries: 0,
});
Copy
type: lacework:IntegrationGcpGkeAuditLog
properties:
    credentials:
        clientEmail: string
        clientId: string
        privateKey: string
        privateKeyId: string
    enabled: false
    integrationGcpGkeAuditLogId: string
    integrationType: string
    name: string
    organizationId: string
    projectId: string
    retries: 0
    subscription: string
Copy

IntegrationGcpGkeAuditLog Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The IntegrationGcpGkeAuditLog resource accepts the following input properties:

Credentials This property is required. IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
IntegrationType This property is required. string
The integration type. Must be one of PROJECT or ORGANIZATION.
ProjectId This property is required. string
The project ID.
Subscription This property is required. string
The PubSub Subscription.
Enabled bool
The state of the external integration. Defaults to true.
IntegrationGcpGkeAuditLogId string
Name string
The GCP Audit Trail integration name.
OrganizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
Retries double
The number of attempts to create the external integration. Defaults to 5.
Credentials This property is required. IntegrationGcpGkeAuditLogCredentialsArgs
The credentials needed by the integration. See Credentials below for details.
IntegrationType This property is required. string
The integration type. Must be one of PROJECT or ORGANIZATION.
ProjectId This property is required. string
The project ID.
Subscription This property is required. string
The PubSub Subscription.
Enabled bool
The state of the external integration. Defaults to true.
IntegrationGcpGkeAuditLogId string
Name string
The GCP Audit Trail integration name.
OrganizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
Retries float64
The number of attempts to create the external integration. Defaults to 5.
credentials This property is required. IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
integrationType This property is required. String
The integration type. Must be one of PROJECT or ORGANIZATION.
projectId This property is required. String
The project ID.
subscription This property is required. String
The PubSub Subscription.
enabled Boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId String
name String
The GCP Audit Trail integration name.
organizationId String
The organization ID. Required if integration_type is set to ORGANIZATION.
retries Double
The number of attempts to create the external integration. Defaults to 5.
credentials This property is required. IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
integrationType This property is required. string
The integration type. Must be one of PROJECT or ORGANIZATION.
projectId This property is required. string
The project ID.
subscription This property is required. string
The PubSub Subscription.
enabled boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId string
name string
The GCP Audit Trail integration name.
organizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
retries number
The number of attempts to create the external integration. Defaults to 5.
credentials This property is required. IntegrationGcpGkeAuditLogCredentialsArgs
The credentials needed by the integration. See Credentials below for details.
integration_type This property is required. str
The integration type. Must be one of PROJECT or ORGANIZATION.
project_id This property is required. str
The project ID.
subscription This property is required. str
The PubSub Subscription.
enabled bool
The state of the external integration. Defaults to true.
integration_gcp_gke_audit_log_id str
name str
The GCP Audit Trail integration name.
organization_id str
The organization ID. Required if integration_type is set to ORGANIZATION.
retries float
The number of attempts to create the external integration. Defaults to 5.
credentials This property is required. Property Map
The credentials needed by the integration. See Credentials below for details.
integrationType This property is required. String
The integration type. Must be one of PROJECT or ORGANIZATION.
projectId This property is required. String
The project ID.
subscription This property is required. String
The PubSub Subscription.
enabled Boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId String
name String
The GCP Audit Trail integration name.
organizationId String
The organization ID. Required if integration_type is set to ORGANIZATION.
retries Number
The number of attempts to create the external integration. Defaults to 5.

Outputs

All input properties are implicitly available as output properties. Additionally, the IntegrationGcpGkeAuditLog resource produces the following output properties:

CreatedOrUpdatedBy string
CreatedOrUpdatedTime string
Id string
The provider-assigned unique ID for this managed resource.
IntgGuid string
IsOrg bool
CreatedOrUpdatedBy string
CreatedOrUpdatedTime string
Id string
The provider-assigned unique ID for this managed resource.
IntgGuid string
IsOrg bool
createdOrUpdatedBy String
createdOrUpdatedTime String
id String
The provider-assigned unique ID for this managed resource.
intgGuid String
isOrg Boolean
createdOrUpdatedBy string
createdOrUpdatedTime string
id string
The provider-assigned unique ID for this managed resource.
intgGuid string
isOrg boolean
created_or_updated_by str
created_or_updated_time str
id str
The provider-assigned unique ID for this managed resource.
intg_guid str
is_org bool
createdOrUpdatedBy String
createdOrUpdatedTime String
id String
The provider-assigned unique ID for this managed resource.
intgGuid String
isOrg Boolean

Look up Existing IntegrationGcpGkeAuditLog Resource

Get an existing IntegrationGcpGkeAuditLog resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: IntegrationGcpGkeAuditLogState, opts?: CustomResourceOptions): IntegrationGcpGkeAuditLog
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        created_or_updated_by: Optional[str] = None,
        created_or_updated_time: Optional[str] = None,
        credentials: Optional[IntegrationGcpGkeAuditLogCredentialsArgs] = None,
        enabled: Optional[bool] = None,
        integration_gcp_gke_audit_log_id: Optional[str] = None,
        integration_type: Optional[str] = None,
        intg_guid: Optional[str] = None,
        is_org: Optional[bool] = None,
        name: Optional[str] = None,
        organization_id: Optional[str] = None,
        project_id: Optional[str] = None,
        retries: Optional[float] = None,
        subscription: Optional[str] = None) -> IntegrationGcpGkeAuditLog
func GetIntegrationGcpGkeAuditLog(ctx *Context, name string, id IDInput, state *IntegrationGcpGkeAuditLogState, opts ...ResourceOption) (*IntegrationGcpGkeAuditLog, error)
public static IntegrationGcpGkeAuditLog Get(string name, Input<string> id, IntegrationGcpGkeAuditLogState? state, CustomResourceOptions? opts = null)
public static IntegrationGcpGkeAuditLog get(String name, Output<String> id, IntegrationGcpGkeAuditLogState state, CustomResourceOptions options)
resources:  _:    type: lacework:IntegrationGcpGkeAuditLog    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CreatedOrUpdatedBy string
CreatedOrUpdatedTime string
Credentials IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
Enabled bool
The state of the external integration. Defaults to true.
IntegrationGcpGkeAuditLogId string
IntegrationType string
The integration type. Must be one of PROJECT or ORGANIZATION.
IntgGuid string
IsOrg bool
Name string
The GCP Audit Trail integration name.
OrganizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
ProjectId string
The project ID.
Retries double
The number of attempts to create the external integration. Defaults to 5.
Subscription string
The PubSub Subscription.
CreatedOrUpdatedBy string
CreatedOrUpdatedTime string
Credentials IntegrationGcpGkeAuditLogCredentialsArgs
The credentials needed by the integration. See Credentials below for details.
Enabled bool
The state of the external integration. Defaults to true.
IntegrationGcpGkeAuditLogId string
IntegrationType string
The integration type. Must be one of PROJECT or ORGANIZATION.
IntgGuid string
IsOrg bool
Name string
The GCP Audit Trail integration name.
OrganizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
ProjectId string
The project ID.
Retries float64
The number of attempts to create the external integration. Defaults to 5.
Subscription string
The PubSub Subscription.
createdOrUpdatedBy String
createdOrUpdatedTime String
credentials IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
enabled Boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId String
integrationType String
The integration type. Must be one of PROJECT or ORGANIZATION.
intgGuid String
isOrg Boolean
name String
The GCP Audit Trail integration name.
organizationId String
The organization ID. Required if integration_type is set to ORGANIZATION.
projectId String
The project ID.
retries Double
The number of attempts to create the external integration. Defaults to 5.
subscription String
The PubSub Subscription.
createdOrUpdatedBy string
createdOrUpdatedTime string
credentials IntegrationGcpGkeAuditLogCredentials
The credentials needed by the integration. See Credentials below for details.
enabled boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId string
integrationType string
The integration type. Must be one of PROJECT or ORGANIZATION.
intgGuid string
isOrg boolean
name string
The GCP Audit Trail integration name.
organizationId string
The organization ID. Required if integration_type is set to ORGANIZATION.
projectId string
The project ID.
retries number
The number of attempts to create the external integration. Defaults to 5.
subscription string
The PubSub Subscription.
created_or_updated_by str
created_or_updated_time str
credentials IntegrationGcpGkeAuditLogCredentialsArgs
The credentials needed by the integration. See Credentials below for details.
enabled bool
The state of the external integration. Defaults to true.
integration_gcp_gke_audit_log_id str
integration_type str
The integration type. Must be one of PROJECT or ORGANIZATION.
intg_guid str
is_org bool
name str
The GCP Audit Trail integration name.
organization_id str
The organization ID. Required if integration_type is set to ORGANIZATION.
project_id str
The project ID.
retries float
The number of attempts to create the external integration. Defaults to 5.
subscription str
The PubSub Subscription.
createdOrUpdatedBy String
createdOrUpdatedTime String
credentials Property Map
The credentials needed by the integration. See Credentials below for details.
enabled Boolean
The state of the external integration. Defaults to true.
integrationGcpGkeAuditLogId String
integrationType String
The integration type. Must be one of PROJECT or ORGANIZATION.
intgGuid String
isOrg Boolean
name String
The GCP Audit Trail integration name.
organizationId String
The organization ID. Required if integration_type is set to ORGANIZATION.
projectId String
The project ID.
retries Number
The number of attempts to create the external integration. Defaults to 5.
subscription String
The PubSub Subscription.

Supporting Types

IntegrationGcpGkeAuditLogCredentials
, IntegrationGcpGkeAuditLogCredentialsArgs

ClientEmail This property is required. string
The service account client email.
ClientId This property is required. string
The service account client ID.
PrivateKey This property is required. string
The service account private key.
PrivateKeyId This property is required. string
The service account private key ID.
ClientEmail This property is required. string
The service account client email.
ClientId This property is required. string
The service account client ID.
PrivateKey This property is required. string
The service account private key.
PrivateKeyId This property is required. string
The service account private key ID.
clientEmail This property is required. String
The service account client email.
clientId This property is required. String
The service account client ID.
privateKey This property is required. String
The service account private key.
privateKeyId This property is required. String
The service account private key ID.
clientEmail This property is required. string
The service account client email.
clientId This property is required. string
The service account client ID.
privateKey This property is required. string
The service account private key.
privateKeyId This property is required. string
The service account private key ID.
client_email This property is required. str
The service account client email.
client_id This property is required. str
The service account client ID.
private_key This property is required. str
The service account private key.
private_key_id This property is required. str
The service account private key ID.
clientEmail This property is required. String
The service account client email.
clientId This property is required. String
The service account client ID.
privateKey This property is required. String
The service account private key.
privateKeyId This property is required. String
The service account private key ID.

Import

A Lacework GCP GKE Audit Log integration can be imported using a INT_GUID, e.g.

$ pulumi import lacework:index/integrationGcpGkeAuditLog:IntegrationGcpGkeAuditLog account_abc EXAMPLE_1234BAE1E42182964D23973F44CFEA3C4AB63B99E9A1EC5
Copy

-> Note: To retrieve the INT_GUID from existing integrations in your account, use the Lacework CLI command lacework cloud-account list. To install this tool follow this documentation.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
lacework lacework/terraform-provider-lacework
License
Notes
This Pulumi package is based on the lacework Terraform Provider.