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

lacework.IntegrationDockerV2

Explore with Pulumi AI

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

    Use the Docker V2 Registry integration for private Docker V2 registries only.

    Note: For Docker Hub, ECR, and GCR, use their corresponding container registry types.

    The Docker V2 Registry integration functions differently than Lacework’s other container registry integrations. This integration performs on-demand image assessment via the Lacework API, while the other integrations automatically assess images at regular intervals.

    Supported Docker V2 registries:

    • Azure Container Registry
    • GitLab (On prem 12.8 and cloud)
    • JFrog Artifactory (On prem 7.2.1 and cloud)
    • JFrog Platform (On prem 7.2.1 and cloud)

    Note: You must whitelist the Lacework outbound IPs to allow the vulnerability scanner to communicate with your private registries. See Lacework Outbound IPs

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as lacework from "@pulumi/lacework";
    
    const jfrog = new lacework.IntegrationDockerV2("jfrog", {
        password: "a-secret-password",
        registryDomain: "my-dockerv2.jfrog.io",
        ssl: true,
        username: "my-user",
    });
    
    import pulumi
    import pulumi_lacework as lacework
    
    jfrog = lacework.IntegrationDockerV2("jfrog",
        password="a-secret-password",
        registry_domain="my-dockerv2.jfrog.io",
        ssl=True,
        username="my-user")
    
    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.NewIntegrationDockerV2(ctx, "jfrog", &lacework.IntegrationDockerV2Args{
    			Password:       pulumi.String("a-secret-password"),
    			RegistryDomain: pulumi.String("my-dockerv2.jfrog.io"),
    			Ssl:            pulumi.Bool(true),
    			Username:       pulumi.String("my-user"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Lacework = Pulumi.Lacework;
    
    return await Deployment.RunAsync(() => 
    {
        var jfrog = new Lacework.IntegrationDockerV2("jfrog", new()
        {
            Password = "a-secret-password",
            RegistryDomain = "my-dockerv2.jfrog.io",
            Ssl = true,
            Username = "my-user",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.lacework.IntegrationDockerV2;
    import com.pulumi.lacework.IntegrationDockerV2Args;
    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 jfrog = new IntegrationDockerV2("jfrog", IntegrationDockerV2Args.builder()
                .password("a-secret-password")
                .registryDomain("my-dockerv2.jfrog.io")
                .ssl(true)
                .username("my-user")
                .build());
    
        }
    }
    
    resources:
      jfrog:
        type: lacework:IntegrationDockerV2
        properties:
          password: a-secret-password
          registryDomain: my-dockerv2.jfrog.io
          ssl: true
          username: my-user
    

    Note: The Docker V2 Registry status displays Integration Successful only after its first assessment completes.

    Create IntegrationDockerV2 Resource

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

    Constructor syntax

    new IntegrationDockerV2(name: string, args: IntegrationDockerV2Args, opts?: CustomResourceOptions);
    @overload
    def IntegrationDockerV2(resource_name: str,
                            args: IntegrationDockerV2Args,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationDockerV2(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            password: Optional[str] = None,
                            registry_domain: Optional[str] = None,
                            username: Optional[str] = None,
                            enabled: Optional[bool] = None,
                            integration_docker_v2_id: Optional[str] = None,
                            limit_by_labels: Optional[Sequence[IntegrationDockerV2LimitByLabelArgs]] = None,
                            limit_by_tags: Optional[Sequence[str]] = None,
                            name: Optional[str] = None,
                            non_os_package_support: Optional[bool] = None,
                            notifications: Optional[bool] = None,
                            ssl: Optional[bool] = None)
    func NewIntegrationDockerV2(ctx *Context, name string, args IntegrationDockerV2Args, opts ...ResourceOption) (*IntegrationDockerV2, error)
    public IntegrationDockerV2(string name, IntegrationDockerV2Args args, CustomResourceOptions? opts = null)
    public IntegrationDockerV2(String name, IntegrationDockerV2Args args)
    public IntegrationDockerV2(String name, IntegrationDockerV2Args args, CustomResourceOptions options)
    
    type: lacework:IntegrationDockerV2
    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 IntegrationDockerV2Args
    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 IntegrationDockerV2Args
    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 IntegrationDockerV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationDockerV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationDockerV2Args
    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 integrationDockerV2Resource = new Lacework.IntegrationDockerV2("integrationDockerV2Resource", new()
    {
        Password = "string",
        RegistryDomain = "string",
        Username = "string",
        Enabled = false,
        IntegrationDockerV2Id = "string",
        LimitByLabels = new[]
        {
            new Lacework.Inputs.IntegrationDockerV2LimitByLabelArgs
            {
                Key = "string",
                Value = "string",
            },
        },
        LimitByTags = new[]
        {
            "string",
        },
        Name = "string",
        NonOsPackageSupport = false,
        Notifications = false,
        Ssl = false,
    });
    
    example, err := lacework.NewIntegrationDockerV2(ctx, "integrationDockerV2Resource", &lacework.IntegrationDockerV2Args{
    	Password:              pulumi.String("string"),
    	RegistryDomain:        pulumi.String("string"),
    	Username:              pulumi.String("string"),
    	Enabled:               pulumi.Bool(false),
    	IntegrationDockerV2Id: pulumi.String("string"),
    	LimitByLabels: lacework.IntegrationDockerV2LimitByLabelArray{
    		&lacework.IntegrationDockerV2LimitByLabelArgs{
    			Key:   pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	LimitByTags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:                pulumi.String("string"),
    	NonOsPackageSupport: pulumi.Bool(false),
    	Notifications:       pulumi.Bool(false),
    	Ssl:                 pulumi.Bool(false),
    })
    
    var integrationDockerV2Resource = new IntegrationDockerV2("integrationDockerV2Resource", IntegrationDockerV2Args.builder()
        .password("string")
        .registryDomain("string")
        .username("string")
        .enabled(false)
        .integrationDockerV2Id("string")
        .limitByLabels(IntegrationDockerV2LimitByLabelArgs.builder()
            .key("string")
            .value("string")
            .build())
        .limitByTags("string")
        .name("string")
        .nonOsPackageSupport(false)
        .notifications(false)
        .ssl(false)
        .build());
    
    integration_docker_v2_resource = lacework.IntegrationDockerV2("integrationDockerV2Resource",
        password="string",
        registry_domain="string",
        username="string",
        enabled=False,
        integration_docker_v2_id="string",
        limit_by_labels=[{
            "key": "string",
            "value": "string",
        }],
        limit_by_tags=["string"],
        name="string",
        non_os_package_support=False,
        notifications=False,
        ssl=False)
    
    const integrationDockerV2Resource = new lacework.IntegrationDockerV2("integrationDockerV2Resource", {
        password: "string",
        registryDomain: "string",
        username: "string",
        enabled: false,
        integrationDockerV2Id: "string",
        limitByLabels: [{
            key: "string",
            value: "string",
        }],
        limitByTags: ["string"],
        name: "string",
        nonOsPackageSupport: false,
        notifications: false,
        ssl: false,
    });
    
    type: lacework:IntegrationDockerV2
    properties:
        enabled: false
        integrationDockerV2Id: string
        limitByLabels:
            - key: string
              value: string
        limitByTags:
            - string
        name: string
        nonOsPackageSupport: false
        notifications: false
        password: string
        registryDomain: string
        ssl: false
        username: string
    

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

    Password string
    The password for the specified user.
    RegistryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    Username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    Enabled bool
    The state of the external integration. Defaults to true.
    IntegrationDockerV2Id string
    LimitByLabels List<IntegrationDockerV2LimitByLabel>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    LimitByTags List<string>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    Name string
    The Docker V2 Registry integration name.
    NonOsPackageSupport bool
    Enable program language scanning. Defaults to true.
    Notifications bool
    Subscribe to registry notifications. Defaults to false.
    Ssl bool
    Enable or disable SSL communication. Defaults to false.
    Password string
    The password for the specified user.
    RegistryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    Username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    Enabled bool
    The state of the external integration. Defaults to true.
    IntegrationDockerV2Id string
    LimitByLabels []IntegrationDockerV2LimitByLabelArgs
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    LimitByTags []string
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    Name string
    The Docker V2 Registry integration name.
    NonOsPackageSupport bool
    Enable program language scanning. Defaults to true.
    Notifications bool
    Subscribe to registry notifications. Defaults to false.
    Ssl bool
    Enable or disable SSL communication. Defaults to false.
    password String
    The password for the specified user.
    registryDomain String
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    username String
    The user that has at permissions to pull from the container registry the images to be assessed.
    enabled Boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id String
    limitByLabels List<IntegrationDockerV2LimitByLabel>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags List<String>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name String
    The Docker V2 Registry integration name.
    nonOsPackageSupport Boolean
    Enable program language scanning. Defaults to true.
    notifications Boolean
    Subscribe to registry notifications. Defaults to false.
    ssl Boolean
    Enable or disable SSL communication. Defaults to false.
    password string
    The password for the specified user.
    registryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    enabled boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id string
    limitByLabels IntegrationDockerV2LimitByLabel[]
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags string[]
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name string
    The Docker V2 Registry integration name.
    nonOsPackageSupport boolean
    Enable program language scanning. Defaults to true.
    notifications boolean
    Subscribe to registry notifications. Defaults to false.
    ssl boolean
    Enable or disable SSL communication. Defaults to false.
    password str
    The password for the specified user.
    registry_domain str
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    username str
    The user that has at permissions to pull from the container registry the images to be assessed.
    enabled bool
    The state of the external integration. Defaults to true.
    integration_docker_v2_id str
    limit_by_labels Sequence[IntegrationDockerV2LimitByLabelArgs]
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limit_by_tags Sequence[str]
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name str
    The Docker V2 Registry integration name.
    non_os_package_support bool
    Enable program language scanning. Defaults to true.
    notifications bool
    Subscribe to registry notifications. Defaults to false.
    ssl bool
    Enable or disable SSL communication. Defaults to false.
    password String
    The password for the specified user.
    registryDomain String
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    username String
    The user that has at permissions to pull from the container registry the images to be assessed.
    enabled Boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id String
    limitByLabels List<Property Map>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags List<String>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name String
    The Docker V2 Registry integration name.
    nonOsPackageSupport Boolean
    Enable program language scanning. Defaults to true.
    notifications Boolean
    Subscribe to registry notifications. Defaults to false.
    ssl Boolean
    Enable or disable SSL communication. Defaults to false.

    Outputs

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

    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Id string
    The provider-assigned unique ID for this managed resource.
    IntgGuid string
    OrgLevel bool
    TypeName string
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Id string
    The provider-assigned unique ID for this managed resource.
    IntgGuid string
    OrgLevel bool
    TypeName string
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    id String
    The provider-assigned unique ID for this managed resource.
    intgGuid String
    orgLevel Boolean
    typeName String
    createdOrUpdatedBy string
    createdOrUpdatedTime string
    id string
    The provider-assigned unique ID for this managed resource.
    intgGuid string
    orgLevel boolean
    typeName 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
    org_level bool
    type_name str
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    id String
    The provider-assigned unique ID for this managed resource.
    intgGuid String
    orgLevel Boolean
    typeName String

    Look up Existing IntegrationDockerV2 Resource

    Get an existing IntegrationDockerV2 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?: IntegrationDockerV2State, opts?: CustomResourceOptions): IntegrationDockerV2
    @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,
            enabled: Optional[bool] = None,
            integration_docker_v2_id: Optional[str] = None,
            intg_guid: Optional[str] = None,
            limit_by_labels: Optional[Sequence[IntegrationDockerV2LimitByLabelArgs]] = None,
            limit_by_tags: Optional[Sequence[str]] = None,
            name: Optional[str] = None,
            non_os_package_support: Optional[bool] = None,
            notifications: Optional[bool] = None,
            org_level: Optional[bool] = None,
            password: Optional[str] = None,
            registry_domain: Optional[str] = None,
            ssl: Optional[bool] = None,
            type_name: Optional[str] = None,
            username: Optional[str] = None) -> IntegrationDockerV2
    func GetIntegrationDockerV2(ctx *Context, name string, id IDInput, state *IntegrationDockerV2State, opts ...ResourceOption) (*IntegrationDockerV2, error)
    public static IntegrationDockerV2 Get(string name, Input<string> id, IntegrationDockerV2State? state, CustomResourceOptions? opts = null)
    public static IntegrationDockerV2 get(String name, Output<String> id, IntegrationDockerV2State state, CustomResourceOptions options)
    resources:  _:    type: lacework:IntegrationDockerV2    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:
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Enabled bool
    The state of the external integration. Defaults to true.
    IntegrationDockerV2Id string
    IntgGuid string
    LimitByLabels List<IntegrationDockerV2LimitByLabel>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    LimitByTags List<string>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    Name string
    The Docker V2 Registry integration name.
    NonOsPackageSupport bool
    Enable program language scanning. Defaults to true.
    Notifications bool
    Subscribe to registry notifications. Defaults to false.
    OrgLevel bool
    Password string
    The password for the specified user.
    RegistryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    Ssl bool
    Enable or disable SSL communication. Defaults to false.
    TypeName string
    Username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    CreatedOrUpdatedBy string
    CreatedOrUpdatedTime string
    Enabled bool
    The state of the external integration. Defaults to true.
    IntegrationDockerV2Id string
    IntgGuid string
    LimitByLabels []IntegrationDockerV2LimitByLabelArgs
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    LimitByTags []string
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    Name string
    The Docker V2 Registry integration name.
    NonOsPackageSupport bool
    Enable program language scanning. Defaults to true.
    Notifications bool
    Subscribe to registry notifications. Defaults to false.
    OrgLevel bool
    Password string
    The password for the specified user.
    RegistryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    Ssl bool
    Enable or disable SSL communication. Defaults to false.
    TypeName string
    Username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    enabled Boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id String
    intgGuid String
    limitByLabels List<IntegrationDockerV2LimitByLabel>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags List<String>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name String
    The Docker V2 Registry integration name.
    nonOsPackageSupport Boolean
    Enable program language scanning. Defaults to true.
    notifications Boolean
    Subscribe to registry notifications. Defaults to false.
    orgLevel Boolean
    password String
    The password for the specified user.
    registryDomain String
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    ssl Boolean
    Enable or disable SSL communication. Defaults to false.
    typeName String
    username String
    The user that has at permissions to pull from the container registry the images to be assessed.
    createdOrUpdatedBy string
    createdOrUpdatedTime string
    enabled boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id string
    intgGuid string
    limitByLabels IntegrationDockerV2LimitByLabel[]
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags string[]
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name string
    The Docker V2 Registry integration name.
    nonOsPackageSupport boolean
    Enable program language scanning. Defaults to true.
    notifications boolean
    Subscribe to registry notifications. Defaults to false.
    orgLevel boolean
    password string
    The password for the specified user.
    registryDomain string
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    ssl boolean
    Enable or disable SSL communication. Defaults to false.
    typeName string
    username string
    The user that has at permissions to pull from the container registry the images to be assessed.
    created_or_updated_by str
    created_or_updated_time str
    enabled bool
    The state of the external integration. Defaults to true.
    integration_docker_v2_id str
    intg_guid str
    limit_by_labels Sequence[IntegrationDockerV2LimitByLabelArgs]
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limit_by_tags Sequence[str]
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name str
    The Docker V2 Registry integration name.
    non_os_package_support bool
    Enable program language scanning. Defaults to true.
    notifications bool
    Subscribe to registry notifications. Defaults to false.
    org_level bool
    password str
    The password for the specified user.
    registry_domain str
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    ssl bool
    Enable or disable SSL communication. Defaults to false.
    type_name str
    username str
    The user that has at permissions to pull from the container registry the images to be assessed.
    createdOrUpdatedBy String
    createdOrUpdatedTime String
    enabled Boolean
    The state of the external integration. Defaults to true.
    integrationDockerV2Id String
    intgGuid String
    limitByLabels List<Property Map>
    A list of key/value labels to limit the assessment of images. If you specify limit_by_tags and limit_by_label limits, they function as an AND.
    limitByTags List<String>
    A list of image tags to limit the assessment of images with matching tags. If you specify limit_by_tags and limit_by_labels limits, they function as an AND.
    name String
    The Docker V2 Registry integration name.
    nonOsPackageSupport Boolean
    Enable program language scanning. Defaults to true.
    notifications Boolean
    Subscribe to registry notifications. Defaults to false.
    orgLevel Boolean
    password String
    The password for the specified user.
    registryDomain String
    The registry domain. Allowed formats are YourIP:YourPort or YourDomain:YourPort.
    ssl Boolean
    Enable or disable SSL communication. Defaults to false.
    typeName String
    username String
    The user that has at permissions to pull from the container registry the images to be assessed.

    Supporting Types

    IntegrationDockerV2LimitByLabel, IntegrationDockerV2LimitByLabelArgs

    Key string
    The key of the label.
    Value string

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    
    Key string
    The key of the label.
    Value string

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    
    key String
    The key of the label.
    value String

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    
    key string
    The key of the label.
    value string

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    
    key str
    The key of the label.
    value str

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    
    key String
    The key of the label.
    value String

    The value of the label.

    For example, to limit by the label key with values value and value2, plus the label key1 with value value.

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    

    return await Deployment.RunAsync(() => { });

    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Import

    A Lacework Docker V2 container registry integration can be imported using a INT_GUID, e.g.

    $ pulumi import lacework:index/integrationDockerV2:IntegrationDockerV2 jfrog EXAMPLE_1234BAE1E42182964D23973F44CFEA3C4AB63B99E9A1EC5
    

    -> Note: To retrieve the INT_GUID from existing integrations in your account, use the Lacework CLI command lacework container-registry 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.
    lacework logo
    lacework 2.0.6 published on Monday, Apr 14, 2025 by lacework