lacework.IntegrationDockerV2
Explore with Pulumi AI
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.
- Registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain: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
. - Integration
Docker stringV2Id - Limit
By List<IntegrationLabels Docker V2Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<string>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - Name string
- The Docker V2 Registry integration name.
- Non
Os boolPackage Support - 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.
- Registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain: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
. - Integration
Docker stringV2Id - Limit
By []IntegrationLabels Docker V2Limit By Label Args - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - []string
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - Name string
- The Docker V2 Registry integration name.
- Non
Os boolPackage Support - 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.
- registry
Domain String - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain: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
. - integration
Docker StringV2Id - limit
By List<IntegrationLabels Docker V2Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name String
- The Docker V2 Registry integration name.
- non
Os BooleanPackage Support - 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.
- registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain: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
. - integration
Docker stringV2Id - limit
By IntegrationLabels Docker V2Limit By Label[] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - string[]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name string
- The Docker V2 Registry integration name.
- non
Os booleanPackage Support - 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
orYourDomain: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_ strv2_ id - limit_
by_ Sequence[Integrationlabels Docker V2Limit By Label Args] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Sequence[str]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name str
- The Docker V2 Registry integration name.
- non_
os_ boolpackage_ support - 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.
- registry
Domain String - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain: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
. - integration
Docker StringV2Id - limit
By List<Property Map>Labels - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name String
- The Docker V2 Registry integration name.
- non
Os BooleanPackage Support - 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:
- 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 - Type
Name 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 - Type
Name 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 - type
Name 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 - type
Name 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 - type_
name 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 - type
Name 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.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Docker stringV2Id - Intg
Guid string - Limit
By List<IntegrationLabels Docker V2Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<string>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - Name string
- The Docker V2 Registry integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
. - Notifications bool
- Subscribe to registry notifications. Defaults to
false
. - Org
Level bool - Password string
- The password for the specified user.
- Registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain:YourPort
. - Ssl bool
- Enable or disable SSL communication. Defaults to
false
. - Type
Name string - Username string
- The user that has at permissions to pull from the container registry the images to be assessed.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Docker stringV2Id - Intg
Guid string - Limit
By []IntegrationLabels Docker V2Limit By Label Args - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - []string
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - Name string
- The Docker V2 Registry integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
. - Notifications bool
- Subscribe to registry notifications. Defaults to
false
. - Org
Level bool - Password string
- The password for the specified user.
- Registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain:YourPort
. - Ssl bool
- Enable or disable SSL communication. Defaults to
false
. - Type
Name string - Username string
- The user that has at permissions to pull from the container registry the images to be assessed.
- created
Or StringUpdated By - created
Or StringUpdated Time - enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Docker StringV2Id - intg
Guid String - limit
By List<IntegrationLabels Docker V2Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name String
- The Docker V2 Registry integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
. - notifications Boolean
- Subscribe to registry notifications. Defaults to
false
. - org
Level Boolean - password String
- The password for the specified user.
- registry
Domain String - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain:YourPort
. - ssl Boolean
- Enable or disable SSL communication. Defaults to
false
. - type
Name String - username String
- The user that has at permissions to pull from the container registry the images to be assessed.
- created
Or stringUpdated By - created
Or stringUpdated Time - enabled boolean
- The state of the external integration. Defaults to
true
. - integration
Docker stringV2Id - intg
Guid string - limit
By IntegrationLabels Docker V2Limit By Label[] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - string[]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name string
- The Docker V2 Registry integration name.
- non
Os booleanPackage Support - Enable program language scanning. Defaults to
true
. - notifications boolean
- Subscribe to registry notifications. Defaults to
false
. - org
Level boolean - password string
- The password for the specified user.
- registry
Domain string - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain:YourPort
. - ssl boolean
- Enable or disable SSL communication. Defaults to
false
. - type
Name string - username string
- The user that has at permissions to pull from the container registry the images to be assessed.
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - enabled bool
- The state of the external integration. Defaults to
true
. - integration_
docker_ strv2_ id - intg_
guid str - limit_
by_ Sequence[Integrationlabels Docker V2Limit By Label Args] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Sequence[str]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name str
- The Docker V2 Registry integration name.
- non_
os_ boolpackage_ support - 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
orYourDomain: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.
- created
Or StringUpdated By - created
Or StringUpdated Time - enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Docker StringV2Id - intg
Guid String - limit
By List<Property Map>Labels - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_labels
limits, they function as anAND
. - name String
- The Docker V2 Registry integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
. - notifications Boolean
- Subscribe to registry notifications. Defaults to
false
. - org
Level Boolean - password String
- The password for the specified user.
- registry
Domain String - The registry domain. Allowed formats are
YourIP:YourPort
orYourDomain:YourPort
. - ssl Boolean
- Enable or disable SSL communication. Defaults to
false
. - type
Name 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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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 valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.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.