lacework.IntegrationGcpAgentlessScanning
Explore with Pulumi AI
Use this resource to configure a GCP Agentless Scanning integration.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
accountAbc:
type: lacework:IntegrationGcpAgentlessScanning
properties:
credentials:
clientEmail: email@abc-project-name.iam.gserviceaccount.com
clientId: '123456789012345678900'
privateKey: |+
-----BEGIN PRIVATE KEY-----
... -----END PRIVATE KEY-----
privateKeyId: 1234abcd1234abcd1234abcd1234abcd1234abcd
resourceId: to-scan-gcp-project-id
resourceLevel: PROJECT
scanningProjectId: lacework scanner project id
storageBucket: gcp storage bucket hosting shared results
Create IntegrationGcpAgentlessScanning Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationGcpAgentlessScanning(name: string, args: IntegrationGcpAgentlessScanningArgs, opts?: CustomResourceOptions);
@overload
def IntegrationGcpAgentlessScanning(resource_name: str,
args: IntegrationGcpAgentlessScanningArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationGcpAgentlessScanning(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_id: Optional[str] = None,
credentials: Optional[IntegrationGcpAgentlessScanningCredentialsArgs] = None,
scanning_project_id: Optional[str] = None,
bucket_name: Optional[str] = None,
resource_level: Optional[str] = None,
name: Optional[str] = None,
query_text: Optional[str] = None,
integration_gcp_agentless_scanning_id: Optional[str] = None,
filter_lists: Optional[Sequence[str]] = None,
retries: Optional[float] = None,
scan_containers: Optional[bool] = None,
scan_frequency: Optional[float] = None,
scan_host_vulnerabilities: Optional[bool] = None,
scan_multi_volume: Optional[bool] = None,
scan_stopped_instances: Optional[bool] = None,
enabled: Optional[bool] = None)
func NewIntegrationGcpAgentlessScanning(ctx *Context, name string, args IntegrationGcpAgentlessScanningArgs, opts ...ResourceOption) (*IntegrationGcpAgentlessScanning, error)
public IntegrationGcpAgentlessScanning(string name, IntegrationGcpAgentlessScanningArgs args, CustomResourceOptions? opts = null)
public IntegrationGcpAgentlessScanning(String name, IntegrationGcpAgentlessScanningArgs args)
public IntegrationGcpAgentlessScanning(String name, IntegrationGcpAgentlessScanningArgs args, CustomResourceOptions options)
type: lacework:IntegrationGcpAgentlessScanning
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IntegrationGcpAgentlessScanningArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationGcpAgentlessScanningArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationGcpAgentlessScanningArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationGcpAgentlessScanningArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationGcpAgentlessScanningArgs
- 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 integrationGcpAgentlessScanningResource = new Lacework.IntegrationGcpAgentlessScanning("integrationGcpAgentlessScanningResource", new()
{
ResourceId = "string",
Credentials = new Lacework.Inputs.IntegrationGcpAgentlessScanningCredentialsArgs
{
ClientEmail = "string",
ClientId = "string",
PrivateKey = "string",
PrivateKeyId = "string",
TokenUri = "string",
},
ScanningProjectId = "string",
BucketName = "string",
ResourceLevel = "string",
Name = "string",
QueryText = "string",
IntegrationGcpAgentlessScanningId = "string",
FilterLists = new[]
{
"string",
},
Retries = 0,
ScanContainers = false,
ScanFrequency = 0,
ScanHostVulnerabilities = false,
ScanMultiVolume = false,
ScanStoppedInstances = false,
Enabled = false,
});
example, err := lacework.NewIntegrationGcpAgentlessScanning(ctx, "integrationGcpAgentlessScanningResource", &lacework.IntegrationGcpAgentlessScanningArgs{
ResourceId: pulumi.String("string"),
Credentials: &lacework.IntegrationGcpAgentlessScanningCredentialsArgs{
ClientEmail: pulumi.String("string"),
ClientId: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyId: pulumi.String("string"),
TokenUri: pulumi.String("string"),
},
ScanningProjectId: pulumi.String("string"),
BucketName: pulumi.String("string"),
ResourceLevel: pulumi.String("string"),
Name: pulumi.String("string"),
QueryText: pulumi.String("string"),
IntegrationGcpAgentlessScanningId: pulumi.String("string"),
FilterLists: pulumi.StringArray{
pulumi.String("string"),
},
Retries: pulumi.Float64(0),
ScanContainers: pulumi.Bool(false),
ScanFrequency: pulumi.Float64(0),
ScanHostVulnerabilities: pulumi.Bool(false),
ScanMultiVolume: pulumi.Bool(false),
ScanStoppedInstances: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
})
var integrationGcpAgentlessScanningResource = new IntegrationGcpAgentlessScanning("integrationGcpAgentlessScanningResource", IntegrationGcpAgentlessScanningArgs.builder()
.resourceId("string")
.credentials(IntegrationGcpAgentlessScanningCredentialsArgs.builder()
.clientEmail("string")
.clientId("string")
.privateKey("string")
.privateKeyId("string")
.tokenUri("string")
.build())
.scanningProjectId("string")
.bucketName("string")
.resourceLevel("string")
.name("string")
.queryText("string")
.integrationGcpAgentlessScanningId("string")
.filterLists("string")
.retries(0)
.scanContainers(false)
.scanFrequency(0)
.scanHostVulnerabilities(false)
.scanMultiVolume(false)
.scanStoppedInstances(false)
.enabled(false)
.build());
integration_gcp_agentless_scanning_resource = lacework.IntegrationGcpAgentlessScanning("integrationGcpAgentlessScanningResource",
resource_id="string",
credentials={
"client_email": "string",
"client_id": "string",
"private_key": "string",
"private_key_id": "string",
"token_uri": "string",
},
scanning_project_id="string",
bucket_name="string",
resource_level="string",
name="string",
query_text="string",
integration_gcp_agentless_scanning_id="string",
filter_lists=["string"],
retries=0,
scan_containers=False,
scan_frequency=0,
scan_host_vulnerabilities=False,
scan_multi_volume=False,
scan_stopped_instances=False,
enabled=False)
const integrationGcpAgentlessScanningResource = new lacework.IntegrationGcpAgentlessScanning("integrationGcpAgentlessScanningResource", {
resourceId: "string",
credentials: {
clientEmail: "string",
clientId: "string",
privateKey: "string",
privateKeyId: "string",
tokenUri: "string",
},
scanningProjectId: "string",
bucketName: "string",
resourceLevel: "string",
name: "string",
queryText: "string",
integrationGcpAgentlessScanningId: "string",
filterLists: ["string"],
retries: 0,
scanContainers: false,
scanFrequency: 0,
scanHostVulnerabilities: false,
scanMultiVolume: false,
scanStoppedInstances: false,
enabled: false,
});
type: lacework:IntegrationGcpAgentlessScanning
properties:
bucketName: string
credentials:
clientEmail: string
clientId: string
privateKey: string
privateKeyId: string
tokenUri: string
enabled: false
filterLists:
- string
integrationGcpAgentlessScanningId: string
name: string
queryText: string
resourceId: string
resourceLevel: string
retries: 0
scanContainers: false
scanFrequency: 0
scanHostVulnerabilities: false
scanMultiVolume: false
scanStoppedInstances: false
scanningProjectId: string
IntegrationGcpAgentlessScanning 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 IntegrationGcpAgentlessScanning resource accepts the following input properties:
- Bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- Credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- Resource
Id string - The organization or Project Id.
- Scanning
Project stringId - Project ID where scanner is deployed.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Filter
Lists List<string> - Comma separated list to include or exclude projects.
- Integration
Gcp stringAgentless Scanning Id - Name string
- The GCP Agentless Scanning integration name.
- Query
Text string - The lql query.
- Resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- Retries double
- The number of attempts to create the external integration. Defaults to
5
. - Scan
Containers bool - Whether to includes scanning for containers. Defaults to
true
- Scan
Frequency double - How often, in hours, the scan will run - Defaults to 24 hours.
- Scan
Host boolVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- Scan
Multi boolVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- Scan
Stopped boolInstances - Whether to scan stopped instances (
true
). Defaults totrue
- Bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- Credentials
Integration
Gcp Agentless Scanning Credentials Args - The credentials needed by the integration. See Credentials below for details.
- Resource
Id string - The organization or Project Id.
- Scanning
Project stringId - Project ID where scanner is deployed.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Filter
Lists []string - Comma separated list to include or exclude projects.
- Integration
Gcp stringAgentless Scanning Id - Name string
- The GCP Agentless Scanning integration name.
- Query
Text string - The lql query.
- Resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- Retries float64
- The number of attempts to create the external integration. Defaults to
5
. - Scan
Containers bool - Whether to includes scanning for containers. Defaults to
true
- Scan
Frequency float64 - How often, in hours, the scan will run - Defaults to 24 hours.
- Scan
Host boolVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- Scan
Multi boolVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- Scan
Stopped boolInstances - Whether to scan stopped instances (
true
). Defaults totrue
- bucket
Name String - Bucket containing analysis results shared with Lacework platform.
- credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- resource
Id String - The organization or Project Id.
- scanning
Project StringId - Project ID where scanner is deployed.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - filter
Lists List<String> - Comma separated list to include or exclude projects.
- integration
Gcp StringAgentless Scanning Id - name String
- The GCP Agentless Scanning integration name.
- query
Text String - The lql query.
- resource
Level String - = (Required) "PROJECT" or "ORGANIZATION".
- retries Double
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers Boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency Double - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host BooleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi BooleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped BooleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
- bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- resource
Id string - The organization or Project Id.
- scanning
Project stringId - Project ID where scanner is deployed.
- enabled boolean
- The state of the external integration. Defaults to
true
. - filter
Lists string[] - Comma separated list to include or exclude projects.
- integration
Gcp stringAgentless Scanning Id - name string
- The GCP Agentless Scanning integration name.
- query
Text string - The lql query.
- resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- retries number
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency number - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host booleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi booleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped booleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
- bucket_
name str - Bucket containing analysis results shared with Lacework platform.
- credentials
Integration
Gcp Agentless Scanning Credentials Args - The credentials needed by the integration. See Credentials below for details.
- resource_
id str - The organization or Project Id.
- scanning_
project_ strid - Project ID where scanner is deployed.
- enabled bool
- The state of the external integration. Defaults to
true
. - filter_
lists Sequence[str] - Comma separated list to include or exclude projects.
- integration_
gcp_ stragentless_ scanning_ id - name str
- The GCP Agentless Scanning integration name.
- query_
text str - The lql query.
- resource_
level str - = (Required) "PROJECT" or "ORGANIZATION".
- retries float
- The number of attempts to create the external integration. Defaults to
5
. - scan_
containers bool - Whether to includes scanning for containers. Defaults to
true
- scan_
frequency float - How often, in hours, the scan will run - Defaults to 24 hours.
- scan_
host_ boolvulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan_
multi_ boolvolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan_
stopped_ boolinstances - Whether to scan stopped instances (
true
). Defaults totrue
- bucket
Name String - Bucket containing analysis results shared with Lacework platform.
- credentials Property Map
- The credentials needed by the integration. See Credentials below for details.
- resource
Id String - The organization or Project Id.
- scanning
Project StringId - Project ID where scanner is deployed.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - filter
Lists List<String> - Comma separated list to include or exclude projects.
- integration
Gcp StringAgentless Scanning Id - name String
- The GCP Agentless Scanning integration name.
- query
Text String - The lql query.
- resource
Level String - = (Required) "PROJECT" or "ORGANIZATION".
- retries Number
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers Boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency Number - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host BooleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi BooleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped BooleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationGcpAgentlessScanning resource produces the following output properties:
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Server
Token string - Type
Name string - Uri string
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Server
Token string - Type
Name string - Uri string
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - server
Token String - type
Name String - uri String
- created
Or stringUpdated By - created
Or stringUpdated Time - id string
- The provider-assigned unique ID for this managed resource.
- intg
Guid string - org
Level boolean - server
Token string - type
Name string - uri string
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - id str
- The provider-assigned unique ID for this managed resource.
- intg_
guid str - org_
level bool - server_
token str - type_
name str - uri str
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - server
Token String - type
Name String - uri String
Look up Existing IntegrationGcpAgentlessScanning Resource
Get an existing IntegrationGcpAgentlessScanning 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?: IntegrationGcpAgentlessScanningState, opts?: CustomResourceOptions): IntegrationGcpAgentlessScanning
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bucket_name: Optional[str] = None,
created_or_updated_by: Optional[str] = None,
created_or_updated_time: Optional[str] = None,
credentials: Optional[IntegrationGcpAgentlessScanningCredentialsArgs] = None,
enabled: Optional[bool] = None,
filter_lists: Optional[Sequence[str]] = None,
integration_gcp_agentless_scanning_id: Optional[str] = None,
intg_guid: Optional[str] = None,
name: Optional[str] = None,
org_level: Optional[bool] = None,
query_text: Optional[str] = None,
resource_id: Optional[str] = None,
resource_level: Optional[str] = None,
retries: Optional[float] = None,
scan_containers: Optional[bool] = None,
scan_frequency: Optional[float] = None,
scan_host_vulnerabilities: Optional[bool] = None,
scan_multi_volume: Optional[bool] = None,
scan_stopped_instances: Optional[bool] = None,
scanning_project_id: Optional[str] = None,
server_token: Optional[str] = None,
type_name: Optional[str] = None,
uri: Optional[str] = None) -> IntegrationGcpAgentlessScanning
func GetIntegrationGcpAgentlessScanning(ctx *Context, name string, id IDInput, state *IntegrationGcpAgentlessScanningState, opts ...ResourceOption) (*IntegrationGcpAgentlessScanning, error)
public static IntegrationGcpAgentlessScanning Get(string name, Input<string> id, IntegrationGcpAgentlessScanningState? state, CustomResourceOptions? opts = null)
public static IntegrationGcpAgentlessScanning get(String name, Output<String> id, IntegrationGcpAgentlessScanningState state, CustomResourceOptions options)
resources: _: type: lacework:IntegrationGcpAgentlessScanning get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Filter
Lists List<string> - Comma separated list to include or exclude projects.
- Integration
Gcp stringAgentless Scanning Id - Intg
Guid string - Name string
- The GCP Agentless Scanning integration name.
- Org
Level bool - Query
Text string - The lql query.
- Resource
Id string - The organization or Project Id.
- Resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- Retries double
- The number of attempts to create the external integration. Defaults to
5
. - Scan
Containers bool - Whether to includes scanning for containers. Defaults to
true
- Scan
Frequency double - How often, in hours, the scan will run - Defaults to 24 hours.
- Scan
Host boolVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- Scan
Multi boolVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- Scan
Stopped boolInstances - Whether to scan stopped instances (
true
). Defaults totrue
- Scanning
Project stringId - Project ID where scanner is deployed.
- Server
Token string - Type
Name string - Uri string
- Bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Credentials
Integration
Gcp Agentless Scanning Credentials Args - The credentials needed by the integration. See Credentials below for details.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Filter
Lists []string - Comma separated list to include or exclude projects.
- Integration
Gcp stringAgentless Scanning Id - Intg
Guid string - Name string
- The GCP Agentless Scanning integration name.
- Org
Level bool - Query
Text string - The lql query.
- Resource
Id string - The organization or Project Id.
- Resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- Retries float64
- The number of attempts to create the external integration. Defaults to
5
. - Scan
Containers bool - Whether to includes scanning for containers. Defaults to
true
- Scan
Frequency float64 - How often, in hours, the scan will run - Defaults to 24 hours.
- Scan
Host boolVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- Scan
Multi boolVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- Scan
Stopped boolInstances - Whether to scan stopped instances (
true
). Defaults totrue
- Scanning
Project stringId - Project ID where scanner is deployed.
- Server
Token string - Type
Name string - Uri string
- bucket
Name String - Bucket containing analysis results shared with Lacework platform.
- created
Or StringUpdated By - created
Or StringUpdated Time - credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - filter
Lists List<String> - Comma separated list to include or exclude projects.
- integration
Gcp StringAgentless Scanning Id - intg
Guid String - name String
- The GCP Agentless Scanning integration name.
- org
Level Boolean - query
Text String - The lql query.
- resource
Id String - The organization or Project Id.
- resource
Level String - = (Required) "PROJECT" or "ORGANIZATION".
- retries Double
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers Boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency Double - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host BooleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi BooleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped BooleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
- scanning
Project StringId - Project ID where scanner is deployed.
- server
Token String - type
Name String - uri String
- bucket
Name string - Bucket containing analysis results shared with Lacework platform.
- created
Or stringUpdated By - created
Or stringUpdated Time - credentials
Integration
Gcp Agentless Scanning Credentials - The credentials needed by the integration. See Credentials below for details.
- enabled boolean
- The state of the external integration. Defaults to
true
. - filter
Lists string[] - Comma separated list to include or exclude projects.
- integration
Gcp stringAgentless Scanning Id - intg
Guid string - name string
- The GCP Agentless Scanning integration name.
- org
Level boolean - query
Text string - The lql query.
- resource
Id string - The organization or Project Id.
- resource
Level string - = (Required) "PROJECT" or "ORGANIZATION".
- retries number
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency number - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host booleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi booleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped booleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
- scanning
Project stringId - Project ID where scanner is deployed.
- server
Token string - type
Name string - uri string
- bucket_
name str - Bucket containing analysis results shared with Lacework platform.
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - credentials
Integration
Gcp Agentless Scanning Credentials Args - The credentials needed by the integration. See Credentials below for details.
- enabled bool
- The state of the external integration. Defaults to
true
. - filter_
lists Sequence[str] - Comma separated list to include or exclude projects.
- integration_
gcp_ stragentless_ scanning_ id - intg_
guid str - name str
- The GCP Agentless Scanning integration name.
- org_
level bool - query_
text str - The lql query.
- resource_
id str - The organization or Project Id.
- resource_
level str - = (Required) "PROJECT" or "ORGANIZATION".
- retries float
- The number of attempts to create the external integration. Defaults to
5
. - scan_
containers bool - Whether to includes scanning for containers. Defaults to
true
- scan_
frequency float - How often, in hours, the scan will run - Defaults to 24 hours.
- scan_
host_ boolvulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan_
multi_ boolvolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan_
stopped_ boolinstances - Whether to scan stopped instances (
true
). Defaults totrue
- scanning_
project_ strid - Project ID where scanner is deployed.
- server_
token str - type_
name str - uri str
- bucket
Name String - Bucket containing analysis results shared with Lacework platform.
- created
Or StringUpdated By - created
Or StringUpdated Time - 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
. - filter
Lists List<String> - Comma separated list to include or exclude projects.
- integration
Gcp StringAgentless Scanning Id - intg
Guid String - name String
- The GCP Agentless Scanning integration name.
- org
Level Boolean - query
Text String - The lql query.
- resource
Id String - The organization or Project Id.
- resource
Level String - = (Required) "PROJECT" or "ORGANIZATION".
- retries Number
- The number of attempts to create the external integration. Defaults to
5
. - scan
Containers Boolean - Whether to includes scanning for containers. Defaults to
true
- scan
Frequency Number - How often, in hours, the scan will run - Defaults to 24 hours.
- scan
Host BooleanVulnerabilities - Whether to include scanning for host vulnerabilities. Defaults to
true
- scan
Multi BooleanVolume - Whether to scan secondary volumes (
true
) or only root volumes (false
). Defaults tofalse
- scan
Stopped BooleanInstances - Whether to scan stopped instances (
true
). Defaults totrue
- scanning
Project StringId - Project ID where scanner is deployed.
- server
Token String - type
Name String - uri String
Supporting Types
IntegrationGcpAgentlessScanningCredentials, IntegrationGcpAgentlessScanningCredentialsArgs
- Client
Email string - The service account client email.
- Client
Id string - The service account Client Id.
- Private
Key string - The service account private key.
- Private
Key stringId - The service account Private Key Id.
- Token
Uri string - Token URI from credentials file.
- Client
Email string - The service account client email.
- Client
Id string - The service account Client Id.
- Private
Key string - The service account private key.
- Private
Key stringId - The service account Private Key Id.
- Token
Uri string - Token URI from credentials file.
- client
Email String - The service account client email.
- client
Id String - The service account Client Id.
- private
Key String - The service account private key.
- private
Key StringId - The service account Private Key Id.
- token
Uri String - Token URI from credentials file.
- client
Email string - The service account client email.
- client
Id string - The service account Client Id.
- private
Key string - The service account private key.
- private
Key stringId - The service account Private Key Id.
- token
Uri string - Token URI from credentials file.
- client_
email str - The service account client email.
- client_
id str - The service account Client Id.
- private_
key str - The service account private key.
- private_
key_ strid - The service account Private Key Id.
- token_
uri str - Token URI from credentials file.
- client
Email String - The service account client email.
- client
Id String - The service account Client Id.
- private
Key String - The service account private key.
- private
Key StringId - The service account Private Key Id.
- token
Uri String - Token URI from credentials file.
Import
A Lacework GCP Agentless Scanning integration can be imported using a INT_GUID
, e.g.
$ pulumi import lacework:index/integrationGcpAgentlessScanning:IntegrationGcpAgentlessScanning account_abc EXAMPLE_1234BAE1E42182964D23973F44CFEA3C4AB63B99E9A1EC5
-> Note: To retrieve the INT_GUID
from existing integrations in your account, use the
Lacework CLI command lacework integration 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.