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

lacework.IntegrationAzureAgentlessScanning

Explore with Pulumi AI

lacework logo
lacework 2.0.6 published on Monday, Apr 14, 2025 by lacework

    Create IntegrationAzureAgentlessScanning Resource

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

    Constructor syntax

    new IntegrationAzureAgentlessScanning(name: string, args: IntegrationAzureAgentlessScanningArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAzureAgentlessScanning(resource_name: str,
                                          args: IntegrationAzureAgentlessScanningArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAzureAgentlessScanning(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          blob_container_name: Optional[str] = None,
                                          credentials: Optional[IntegrationAzureAgentlessScanningCredentialsArgs] = None,
                                          tenant_id: Optional[str] = None,
                                          storage_account_url: Optional[str] = None,
                                          scanning_subscription_id: Optional[str] = None,
                                          scanning_resource_group_name: Optional[str] = None,
                                          scan_containers: Optional[bool] = None,
                                          retries: Optional[float] = None,
                                          query_text: Optional[str] = None,
                                          scan_frequency: Optional[float] = None,
                                          scan_host_vulnerabilities: Optional[bool] = None,
                                          scan_multi_volume: Optional[bool] = None,
                                          scan_stopped_instances: Optional[bool] = None,
                                          name: Optional[str] = None,
                                          integration_level: Optional[str] = None,
                                          integration_azure_agentless_scanning_id: Optional[str] = None,
                                          subscriptions_lists: Optional[Sequence[str]] = None,
                                          enabled: Optional[bool] = None)
    func NewIntegrationAzureAgentlessScanning(ctx *Context, name string, args IntegrationAzureAgentlessScanningArgs, opts ...ResourceOption) (*IntegrationAzureAgentlessScanning, error)
    public IntegrationAzureAgentlessScanning(string name, IntegrationAzureAgentlessScanningArgs args, CustomResourceOptions? opts = null)
    public IntegrationAzureAgentlessScanning(String name, IntegrationAzureAgentlessScanningArgs args)
    public IntegrationAzureAgentlessScanning(String name, IntegrationAzureAgentlessScanningArgs args, CustomResourceOptions options)
    
    type: lacework:IntegrationAzureAgentlessScanning
    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 IntegrationAzureAgentlessScanningArgs
    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 IntegrationAzureAgentlessScanningArgs
    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 IntegrationAzureAgentlessScanningArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAzureAgentlessScanningArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAzureAgentlessScanningArgs
    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 integrationAzureAgentlessScanningResource = new Lacework.IntegrationAzureAgentlessScanning("integrationAzureAgentlessScanningResource", new()
    {
        BlobContainerName = "string",
        Credentials = new Lacework.Inputs.IntegrationAzureAgentlessScanningCredentialsArgs
        {
            ClientId = "string",
            ClientSecret = "string",
        },
        TenantId = "string",
        StorageAccountUrl = "string",
        ScanningSubscriptionId = "string",
        ScanningResourceGroupName = "string",
        ScanContainers = false,
        Retries = 0,
        QueryText = "string",
        ScanFrequency = 0,
        ScanHostVulnerabilities = false,
        ScanMultiVolume = false,
        ScanStoppedInstances = false,
        Name = "string",
        IntegrationLevel = "string",
        IntegrationAzureAgentlessScanningId = "string",
        SubscriptionsLists = new[]
        {
            "string",
        },
        Enabled = false,
    });
    
    example, err := lacework.NewIntegrationAzureAgentlessScanning(ctx, "integrationAzureAgentlessScanningResource", &lacework.IntegrationAzureAgentlessScanningArgs{
    	BlobContainerName: pulumi.String("string"),
    	Credentials: &lacework.IntegrationAzureAgentlessScanningCredentialsArgs{
    		ClientId:     pulumi.String("string"),
    		ClientSecret: pulumi.String("string"),
    	},
    	TenantId:                            pulumi.String("string"),
    	StorageAccountUrl:                   pulumi.String("string"),
    	ScanningSubscriptionId:              pulumi.String("string"),
    	ScanningResourceGroupName:           pulumi.String("string"),
    	ScanContainers:                      pulumi.Bool(false),
    	Retries:                             pulumi.Float64(0),
    	QueryText:                           pulumi.String("string"),
    	ScanFrequency:                       pulumi.Float64(0),
    	ScanHostVulnerabilities:             pulumi.Bool(false),
    	ScanMultiVolume:                     pulumi.Bool(false),
    	ScanStoppedInstances:                pulumi.Bool(false),
    	Name:                                pulumi.String("string"),
    	IntegrationLevel:                    pulumi.String("string"),
    	IntegrationAzureAgentlessScanningId: pulumi.String("string"),
    	SubscriptionsLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Enabled: pulumi.Bool(false),
    })
    
    var integrationAzureAgentlessScanningResource = new IntegrationAzureAgentlessScanning("integrationAzureAgentlessScanningResource", IntegrationAzureAgentlessScanningArgs.builder()
        .blobContainerName("string")
        .credentials(IntegrationAzureAgentlessScanningCredentialsArgs.builder()
            .clientId("string")
            .clientSecret("string")
            .build())
        .tenantId("string")
        .storageAccountUrl("string")
        .scanningSubscriptionId("string")
        .scanningResourceGroupName("string")
        .scanContainers(false)
        .retries(0)
        .queryText("string")
        .scanFrequency(0)
        .scanHostVulnerabilities(false)
        .scanMultiVolume(false)
        .scanStoppedInstances(false)
        .name("string")
        .integrationLevel("string")
        .integrationAzureAgentlessScanningId("string")
        .subscriptionsLists("string")
        .enabled(false)
        .build());
    
    integration_azure_agentless_scanning_resource = lacework.IntegrationAzureAgentlessScanning("integrationAzureAgentlessScanningResource",
        blob_container_name="string",
        credentials={
            "client_id": "string",
            "client_secret": "string",
        },
        tenant_id="string",
        storage_account_url="string",
        scanning_subscription_id="string",
        scanning_resource_group_name="string",
        scan_containers=False,
        retries=0,
        query_text="string",
        scan_frequency=0,
        scan_host_vulnerabilities=False,
        scan_multi_volume=False,
        scan_stopped_instances=False,
        name="string",
        integration_level="string",
        integration_azure_agentless_scanning_id="string",
        subscriptions_lists=["string"],
        enabled=False)
    
    const integrationAzureAgentlessScanningResource = new lacework.IntegrationAzureAgentlessScanning("integrationAzureAgentlessScanningResource", {
        blobContainerName: "string",
        credentials: {
            clientId: "string",
            clientSecret: "string",
        },
        tenantId: "string",
        storageAccountUrl: "string",
        scanningSubscriptionId: "string",
        scanningResourceGroupName: "string",
        scanContainers: false,
        retries: 0,
        queryText: "string",
        scanFrequency: 0,
        scanHostVulnerabilities: false,
        scanMultiVolume: false,
        scanStoppedInstances: false,
        name: "string",
        integrationLevel: "string",
        integrationAzureAgentlessScanningId: "string",
        subscriptionsLists: ["string"],
        enabled: false,
    });
    
    type: lacework:IntegrationAzureAgentlessScanning
    properties:
        blobContainerName: string
        credentials:
            clientId: string
            clientSecret: string
        enabled: false
        integrationAzureAgentlessScanningId: string
        integrationLevel: string
        name: string
        queryText: string
        retries: 0
        scanContainers: false
        scanFrequency: 0
        scanHostVulnerabilities: false
        scanMultiVolume: false
        scanStoppedInstances: false
        scanningResourceGroupName: string
        scanningSubscriptionId: string
        storageAccountUrl: string
        subscriptionsLists:
            - string
        tenantId: string
    

    IntegrationAzureAgentlessScanning 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 IntegrationAzureAgentlessScanning resource accepts the following input properties:

    BlobContainerName string
    blob container containing analysis results shared with Lacework platform.
    Credentials IntegrationAzureAgentlessScanningCredentials
    ScanningResourceGroupName string
    name of the resource group where the scanner runs.
    ScanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    StorageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    TenantId string
    Id of the tenant where LW scanner is deployed.
    Enabled bool
    The state of the external integration.
    IntegrationAzureAgentlessScanningId string
    IntegrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    Name string
    The integration name.
    QueryText string
    The LQL query text.
    Retries double
    The number of attempts to create the external integration.
    ScanContainers bool
    Whether to includes scanning for containers.
    ScanFrequency double
    How often in hours the scan will run in hours.
    ScanHostVulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    ScanMultiVolume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    ScanStoppedInstances bool
    Whether to scan stopped instances (true)
    SubscriptionsLists List<string>
    List of subscriptions to specifically include/exclude.
    BlobContainerName string
    blob container containing analysis results shared with Lacework platform.
    Credentials IntegrationAzureAgentlessScanningCredentialsArgs
    ScanningResourceGroupName string
    name of the resource group where the scanner runs.
    ScanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    StorageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    TenantId string
    Id of the tenant where LW scanner is deployed.
    Enabled bool
    The state of the external integration.
    IntegrationAzureAgentlessScanningId string
    IntegrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    Name string
    The integration name.
    QueryText string
    The LQL query text.
    Retries float64
    The number of attempts to create the external integration.
    ScanContainers bool
    Whether to includes scanning for containers.
    ScanFrequency float64
    How often in hours the scan will run in hours.
    ScanHostVulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    ScanMultiVolume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    ScanStoppedInstances bool
    Whether to scan stopped instances (true)
    SubscriptionsLists []string
    List of subscriptions to specifically include/exclude.
    blobContainerName String
    blob container containing analysis results shared with Lacework platform.
    credentials IntegrationAzureAgentlessScanningCredentials
    scanningResourceGroupName String
    name of the resource group where the scanner runs.
    scanningSubscriptionId String
    Id of the subscription where LW scanner is deployed.
    storageAccountUrl String
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    tenantId String
    Id of the tenant where LW scanner is deployed.
    enabled Boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId String
    integrationLevel String
    Integration level - TENANT / SUBSCRIPTION.
    name String
    The integration name.
    queryText String
    The LQL query text.
    retries Double
    The number of attempts to create the external integration.
    scanContainers Boolean
    Whether to includes scanning for containers.
    scanFrequency Double
    How often in hours the scan will run in hours.
    scanHostVulnerabilities Boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume Boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances Boolean
    Whether to scan stopped instances (true)
    subscriptionsLists List<String>
    List of subscriptions to specifically include/exclude.
    blobContainerName string
    blob container containing analysis results shared with Lacework platform.
    credentials IntegrationAzureAgentlessScanningCredentials
    scanningResourceGroupName string
    name of the resource group where the scanner runs.
    scanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    storageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    tenantId string
    Id of the tenant where LW scanner is deployed.
    enabled boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId string
    integrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    name string
    The integration name.
    queryText string
    The LQL query text.
    retries number
    The number of attempts to create the external integration.
    scanContainers boolean
    Whether to includes scanning for containers.
    scanFrequency number
    How often in hours the scan will run in hours.
    scanHostVulnerabilities boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances boolean
    Whether to scan stopped instances (true)
    subscriptionsLists string[]
    List of subscriptions to specifically include/exclude.
    blob_container_name str
    blob container containing analysis results shared with Lacework platform.
    credentials IntegrationAzureAgentlessScanningCredentialsArgs
    scanning_resource_group_name str
    name of the resource group where the scanner runs.
    scanning_subscription_id str
    Id of the subscription where LW scanner is deployed.
    storage_account_url str
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    tenant_id str
    Id of the tenant where LW scanner is deployed.
    enabled bool
    The state of the external integration.
    integration_azure_agentless_scanning_id str
    integration_level str
    Integration level - TENANT / SUBSCRIPTION.
    name str
    The integration name.
    query_text str
    The LQL query text.
    retries float
    The number of attempts to create the external integration.
    scan_containers bool
    Whether to includes scanning for containers.
    scan_frequency float
    How often in hours the scan will run in hours.
    scan_host_vulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    scan_multi_volume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    scan_stopped_instances bool
    Whether to scan stopped instances (true)
    subscriptions_lists Sequence[str]
    List of subscriptions to specifically include/exclude.
    blobContainerName String
    blob container containing analysis results shared with Lacework platform.
    credentials Property Map
    scanningResourceGroupName String
    name of the resource group where the scanner runs.
    scanningSubscriptionId String
    Id of the subscription where LW scanner is deployed.
    storageAccountUrl String
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    tenantId String
    Id of the tenant where LW scanner is deployed.
    enabled Boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId String
    integrationLevel String
    Integration level - TENANT / SUBSCRIPTION.
    name String
    The integration name.
    queryText String
    The LQL query text.
    retries Number
    The number of attempts to create the external integration.
    scanContainers Boolean
    Whether to includes scanning for containers.
    scanFrequency Number
    How often in hours the scan will run in hours.
    scanHostVulnerabilities Boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume Boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances Boolean
    Whether to scan stopped instances (true)
    subscriptionsLists List<String>
    List of subscriptions to specifically include/exclude.

    Outputs

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

    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Id string
    The provider-assigned unique ID for this managed resource.
    IntgGuid string
    ServerToken string
    Uri string
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Id string
    The provider-assigned unique ID for this managed resource.
    IntgGuid string
    ServerToken string
    Uri string
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    id String
    The provider-assigned unique ID for this managed resource.
    intgGuid String
    serverToken String
    uri String
    createdOrUpdatedBy string
    createdOrUpdatedTime string
    id string
    The provider-assigned unique ID for this managed resource.
    intgGuid string
    serverToken string
    uri string
    created_or_updated_by str
    created_or_updated_time str
    id str
    The provider-assigned unique ID for this managed resource.
    intg_guid str
    server_token str
    uri str
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    id String
    The provider-assigned unique ID for this managed resource.
    intgGuid String
    serverToken String
    uri String

    Look up Existing IntegrationAzureAgentlessScanning Resource

    Get an existing IntegrationAzureAgentlessScanning 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?: IntegrationAzureAgentlessScanningState, opts?: CustomResourceOptions): IntegrationAzureAgentlessScanning
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            blob_container_name: Optional[str] = None,
            created_or_updated_by: Optional[str] = None,
            created_or_updated_time: Optional[str] = None,
            credentials: Optional[IntegrationAzureAgentlessScanningCredentialsArgs] = None,
            enabled: Optional[bool] = None,
            integration_azure_agentless_scanning_id: Optional[str] = None,
            integration_level: Optional[str] = None,
            intg_guid: Optional[str] = None,
            name: Optional[str] = None,
            query_text: 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_resource_group_name: Optional[str] = None,
            scanning_subscription_id: Optional[str] = None,
            server_token: Optional[str] = None,
            storage_account_url: Optional[str] = None,
            subscriptions_lists: Optional[Sequence[str]] = None,
            tenant_id: Optional[str] = None,
            uri: Optional[str] = None) -> IntegrationAzureAgentlessScanning
    func GetIntegrationAzureAgentlessScanning(ctx *Context, name string, id IDInput, state *IntegrationAzureAgentlessScanningState, opts ...ResourceOption) (*IntegrationAzureAgentlessScanning, error)
    public static IntegrationAzureAgentlessScanning Get(string name, Input<string> id, IntegrationAzureAgentlessScanningState? state, CustomResourceOptions? opts = null)
    public static IntegrationAzureAgentlessScanning get(String name, Output<String> id, IntegrationAzureAgentlessScanningState state, CustomResourceOptions options)
    resources:  _:    type: lacework:IntegrationAzureAgentlessScanning    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.
    The following state arguments are supported:
    BlobContainerName string
    blob container containing analysis results shared with Lacework platform.
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Credentials IntegrationAzureAgentlessScanningCredentials
    Enabled bool
    The state of the external integration.
    IntegrationAzureAgentlessScanningId string
    IntegrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    IntgGuid string
    Name string
    The integration name.
    QueryText string
    The LQL query text.
    Retries double
    The number of attempts to create the external integration.
    ScanContainers bool
    Whether to includes scanning for containers.
    ScanFrequency double
    How often in hours the scan will run in hours.
    ScanHostVulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    ScanMultiVolume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    ScanStoppedInstances bool
    Whether to scan stopped instances (true)
    ScanningResourceGroupName string
    name of the resource group where the scanner runs.
    ScanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    ServerToken string
    StorageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    SubscriptionsLists List<string>
    List of subscriptions to specifically include/exclude.
    TenantId string
    Id of the tenant where LW scanner is deployed.
    Uri string
    BlobContainerName string
    blob container containing analysis results shared with Lacework platform.
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Credentials IntegrationAzureAgentlessScanningCredentialsArgs
    Enabled bool
    The state of the external integration.
    IntegrationAzureAgentlessScanningId string
    IntegrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    IntgGuid string
    Name string
    The integration name.
    QueryText string
    The LQL query text.
    Retries float64
    The number of attempts to create the external integration.
    ScanContainers bool
    Whether to includes scanning for containers.
    ScanFrequency float64
    How often in hours the scan will run in hours.
    ScanHostVulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    ScanMultiVolume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    ScanStoppedInstances bool
    Whether to scan stopped instances (true)
    ScanningResourceGroupName string
    name of the resource group where the scanner runs.
    ScanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    ServerToken string
    StorageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    SubscriptionsLists []string
    List of subscriptions to specifically include/exclude.
    TenantId string
    Id of the tenant where LW scanner is deployed.
    Uri string
    blobContainerName String
    blob container containing analysis results shared with Lacework platform.
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    credentials IntegrationAzureAgentlessScanningCredentials
    enabled Boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId String
    integrationLevel String
    Integration level - TENANT / SUBSCRIPTION.
    intgGuid String
    name String
    The integration name.
    queryText String
    The LQL query text.
    retries Double
    The number of attempts to create the external integration.
    scanContainers Boolean
    Whether to includes scanning for containers.
    scanFrequency Double
    How often in hours the scan will run in hours.
    scanHostVulnerabilities Boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume Boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances Boolean
    Whether to scan stopped instances (true)
    scanningResourceGroupName String
    name of the resource group where the scanner runs.
    scanningSubscriptionId String
    Id of the subscription where LW scanner is deployed.
    serverToken String
    storageAccountUrl String
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    subscriptionsLists List<String>
    List of subscriptions to specifically include/exclude.
    tenantId String
    Id of the tenant where LW scanner is deployed.
    uri String
    blobContainerName string
    blob container containing analysis results shared with Lacework platform.
    createdOrUpdatedBy string
    createdOrUpdatedTime string
    credentials IntegrationAzureAgentlessScanningCredentials
    enabled boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId string
    integrationLevel string
    Integration level - TENANT / SUBSCRIPTION.
    intgGuid string
    name string
    The integration name.
    queryText string
    The LQL query text.
    retries number
    The number of attempts to create the external integration.
    scanContainers boolean
    Whether to includes scanning for containers.
    scanFrequency number
    How often in hours the scan will run in hours.
    scanHostVulnerabilities boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances boolean
    Whether to scan stopped instances (true)
    scanningResourceGroupName string
    name of the resource group where the scanner runs.
    scanningSubscriptionId string
    Id of the subscription where LW scanner is deployed.
    serverToken string
    storageAccountUrl string
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    subscriptionsLists string[]
    List of subscriptions to specifically include/exclude.
    tenantId string
    Id of the tenant where LW scanner is deployed.
    uri string
    blob_container_name str
    blob container containing analysis results shared with Lacework platform.
    created_or_updated_by str
    created_or_updated_time str
    credentials IntegrationAzureAgentlessScanningCredentialsArgs
    enabled bool
    The state of the external integration.
    integration_azure_agentless_scanning_id str
    integration_level str
    Integration level - TENANT / SUBSCRIPTION.
    intg_guid str
    name str
    The integration name.
    query_text str
    The LQL query text.
    retries float
    The number of attempts to create the external integration.
    scan_containers bool
    Whether to includes scanning for containers.
    scan_frequency float
    How often in hours the scan will run in hours.
    scan_host_vulnerabilities bool
    Whether to includes scanning for host vulnerabilities.
    scan_multi_volume bool
    Whether to scan secondary volumes (true) or only root volumes (false)
    scan_stopped_instances bool
    Whether to scan stopped instances (true)
    scanning_resource_group_name str
    name of the resource group where the scanner runs.
    scanning_subscription_id str
    Id of the subscription where LW scanner is deployed.
    server_token str
    storage_account_url str
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    subscriptions_lists Sequence[str]
    List of subscriptions to specifically include/exclude.
    tenant_id str
    Id of the tenant where LW scanner is deployed.
    uri str
    blobContainerName String
    blob container containing analysis results shared with Lacework platform.
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    credentials Property Map
    enabled Boolean
    The state of the external integration.
    integrationAzureAgentlessScanningId String
    integrationLevel String
    Integration level - TENANT / SUBSCRIPTION.
    intgGuid String
    name String
    The integration name.
    queryText String
    The LQL query text.
    retries Number
    The number of attempts to create the external integration.
    scanContainers Boolean
    Whether to includes scanning for containers.
    scanFrequency Number
    How often in hours the scan will run in hours.
    scanHostVulnerabilities Boolean
    Whether to includes scanning for host vulnerabilities.
    scanMultiVolume Boolean
    Whether to scan secondary volumes (true) or only root volumes (false)
    scanStoppedInstances Boolean
    Whether to scan stopped instances (true)
    scanningResourceGroupName String
    name of the resource group where the scanner runs.
    scanningSubscriptionId String
    Id of the subscription where LW scanner is deployed.
    serverToken String
    storageAccountUrl String
    name of the storage account, in the format of 'https://.blob.core.windows.net'
    subscriptionsLists List<String>
    List of subscriptions to specifically include/exclude.
    tenantId String
    Id of the tenant where LW scanner is deployed.
    uri String

    Supporting Types

    IntegrationAzureAgentlessScanningCredentials, IntegrationAzureAgentlessScanningCredentialsArgs

    ClientId string
    Client Id from credentials file.
    ClientSecret string
    Client secret from credentials file.
    ClientId string
    Client Id from credentials file.
    ClientSecret string
    Client secret from credentials file.
    clientId String
    Client Id from credentials file.
    clientSecret String
    Client secret from credentials file.
    clientId string
    Client Id from credentials file.
    clientSecret string
    Client secret from credentials file.
    client_id str
    Client Id from credentials file.
    client_secret str
    Client secret from credentials file.
    clientId String
    Client Id from credentials file.
    clientSecret String
    Client secret from credentials file.

    Package Details

    Repository
    lacework lacework/terraform-provider-lacework
    License
    Notes
    This Pulumi package is based on the lacework Terraform Provider.
    lacework logo
    lacework 2.0.6 published on Monday, Apr 14, 2025 by lacework