published on Tuesday, Mar 17, 2026 by lacework
published on Tuesday, Mar 17, 2026 by lacework
Create IntegrationAzureDspm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationAzureDspm(name: string, args: IntegrationAzureDspmArgs, opts?: CustomResourceOptions);@overload
def IntegrationAzureDspm(resource_name: str,
args: IntegrationAzureDspmArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationAzureDspm(resource_name: str,
opts: Optional[ResourceOptions] = None,
blob_container_name: Optional[str] = None,
credentials: Optional[IntegrationAzureDspmCredentialsArgs] = None,
regions: Optional[Sequence[str]] = None,
storage_account_url: Optional[str] = None,
datastore_filters: Optional[IntegrationAzureDspmDatastoreFiltersArgs] = None,
integration_azure_dspm_id: Optional[str] = None,
max_file_size_mb: Optional[float] = None,
name: Optional[str] = None,
retries: Optional[float] = None,
scan_frequency_hours: Optional[float] = None,
tenant_id: Optional[str] = None)func NewIntegrationAzureDspm(ctx *Context, name string, args IntegrationAzureDspmArgs, opts ...ResourceOption) (*IntegrationAzureDspm, error)public IntegrationAzureDspm(string name, IntegrationAzureDspmArgs args, CustomResourceOptions? opts = null)
public IntegrationAzureDspm(String name, IntegrationAzureDspmArgs args)
public IntegrationAzureDspm(String name, IntegrationAzureDspmArgs args, CustomResourceOptions options)
type: lacework:IntegrationAzureDspm
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 IntegrationAzureDspmArgs
- 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 IntegrationAzureDspmArgs
- 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 IntegrationAzureDspmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAzureDspmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationAzureDspmArgs
- 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 integrationAzureDspmResource = new Lacework.IntegrationAzureDspm("integrationAzureDspmResource", new()
{
BlobContainerName = "string",
Credentials = new Lacework.Inputs.IntegrationAzureDspmCredentialsArgs
{
ClientId = "string",
ClientSecret = "string",
},
Regions = new[]
{
"string",
},
StorageAccountUrl = "string",
DatastoreFilters = new Lacework.Inputs.IntegrationAzureDspmDatastoreFiltersArgs
{
FilterMode = "string",
DatastoreNames = new[]
{
"string",
},
},
IntegrationAzureDspmId = "string",
MaxFileSizeMb = 0,
Name = "string",
Retries = 0,
ScanFrequencyHours = 0,
TenantId = "string",
});
example, err := lacework.NewIntegrationAzureDspm(ctx, "integrationAzureDspmResource", &lacework.IntegrationAzureDspmArgs{
BlobContainerName: pulumi.String("string"),
Credentials: &lacework.IntegrationAzureDspmCredentialsArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
Regions: pulumi.StringArray{
pulumi.String("string"),
},
StorageAccountUrl: pulumi.String("string"),
DatastoreFilters: &lacework.IntegrationAzureDspmDatastoreFiltersArgs{
FilterMode: pulumi.String("string"),
DatastoreNames: pulumi.StringArray{
pulumi.String("string"),
},
},
IntegrationAzureDspmId: pulumi.String("string"),
MaxFileSizeMb: pulumi.Float64(0),
Name: pulumi.String("string"),
Retries: pulumi.Float64(0),
ScanFrequencyHours: pulumi.Float64(0),
TenantId: pulumi.String("string"),
})
var integrationAzureDspmResource = new IntegrationAzureDspm("integrationAzureDspmResource", IntegrationAzureDspmArgs.builder()
.blobContainerName("string")
.credentials(IntegrationAzureDspmCredentialsArgs.builder()
.clientId("string")
.clientSecret("string")
.build())
.regions("string")
.storageAccountUrl("string")
.datastoreFilters(IntegrationAzureDspmDatastoreFiltersArgs.builder()
.filterMode("string")
.datastoreNames("string")
.build())
.integrationAzureDspmId("string")
.maxFileSizeMb(0.0)
.name("string")
.retries(0.0)
.scanFrequencyHours(0.0)
.tenantId("string")
.build());
integration_azure_dspm_resource = lacework.IntegrationAzureDspm("integrationAzureDspmResource",
blob_container_name="string",
credentials={
"client_id": "string",
"client_secret": "string",
},
regions=["string"],
storage_account_url="string",
datastore_filters={
"filter_mode": "string",
"datastore_names": ["string"],
},
integration_azure_dspm_id="string",
max_file_size_mb=0,
name="string",
retries=0,
scan_frequency_hours=0,
tenant_id="string")
const integrationAzureDspmResource = new lacework.IntegrationAzureDspm("integrationAzureDspmResource", {
blobContainerName: "string",
credentials: {
clientId: "string",
clientSecret: "string",
},
regions: ["string"],
storageAccountUrl: "string",
datastoreFilters: {
filterMode: "string",
datastoreNames: ["string"],
},
integrationAzureDspmId: "string",
maxFileSizeMb: 0,
name: "string",
retries: 0,
scanFrequencyHours: 0,
tenantId: "string",
});
type: lacework:IntegrationAzureDspm
properties:
blobContainerName: string
credentials:
clientId: string
clientSecret: string
datastoreFilters:
datastoreNames:
- string
filterMode: string
integrationAzureDspmId: string
maxFileSizeMb: 0
name: string
regions:
- string
retries: 0
scanFrequencyHours: 0
storageAccountUrl: string
tenantId: string
IntegrationAzureDspm 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 IntegrationAzureDspm resource accepts the following input properties:
- Blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- Credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- Regions List<string>
- The regions where the DSPM scanner is deployed.
- Storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- Datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- Integration
Azure stringDspm Id - Max
File doubleSize Mb - Maximum file size to scan, in megabytes.
- Name string
- The name of the FortiCNAPP DSPM integration.
- Retries double
- The number of attempts to create the external integration.
- Scan
Frequency doubleHours - How often to scan, in hours.
- Tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- Blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- Credentials
Integration
Azure Dspm Credentials Args - The credentials used by Lacework platform to access the Azure SP.
- Regions []string
- The regions where the DSPM scanner is deployed.
- Storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- Datastore
Filters IntegrationAzure Dspm Datastore Filters Args - Filter which datastores are scanned.
- Integration
Azure stringDspm Id - Max
File float64Size Mb - Maximum file size to scan, in megabytes.
- Name string
- The name of the FortiCNAPP DSPM integration.
- Retries float64
- The number of attempts to create the external integration.
- Scan
Frequency float64Hours - How often to scan, in hours.
- Tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container StringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- regions List<String>
- The regions where the DSPM scanner is deployed.
- storage
Account StringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- integration
Azure StringDspm Id - max
File DoubleSize Mb - Maximum file size to scan, in megabytes.
- name String
- The name of the FortiCNAPP DSPM integration.
- retries Double
- The number of attempts to create the external integration.
- scan
Frequency DoubleHours - How often to scan, in hours.
- tenant
Id String - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- regions string[]
- The regions where the DSPM scanner is deployed.
- storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- integration
Azure stringDspm Id - max
File numberSize Mb - Maximum file size to scan, in megabytes.
- name string
- The name of the FortiCNAPP DSPM integration.
- retries number
- The number of attempts to create the external integration.
- scan
Frequency numberHours - How often to scan, in hours.
- tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob_
container_ strname - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials Args - The credentials used by Lacework platform to access the Azure SP.
- regions Sequence[str]
- The regions where the DSPM scanner is deployed.
- storage_
account_ strurl - The URL of the storage account where the DSPM scanner writes results and state.
- datastore_
filters IntegrationAzure Dspm Datastore Filters Args - Filter which datastores are scanned.
- integration_
azure_ strdspm_ id - max_
file_ floatsize_ mb - Maximum file size to scan, in megabytes.
- name str
- The name of the FortiCNAPP DSPM integration.
- retries float
- The number of attempts to create the external integration.
- scan_
frequency_ floathours - How often to scan, in hours.
- tenant_
id str - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container StringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials Property Map
- The credentials used by Lacework platform to access the Azure SP.
- regions List<String>
- The regions where the DSPM scanner is deployed.
- storage
Account StringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- datastore
Filters Property Map - Filter which datastores are scanned.
- integration
Azure StringDspm Id - max
File NumberSize Mb - Maximum file size to scan, in megabytes.
- name String
- The name of the FortiCNAPP DSPM integration.
- retries Number
- The number of attempts to create the external integration.
- scan
Frequency NumberHours - How often to scan, in hours.
- tenant
Id String - The ID of the Azure tenant where the DSPM scanner is deployed.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAzureDspm resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Integration
Guid string - Server
Token string
- Id string
- The provider-assigned unique ID for this managed resource.
- Integration
Guid string - Server
Token string
- id String
- The provider-assigned unique ID for this managed resource.
- integration
Guid String - server
Token String
- id string
- The provider-assigned unique ID for this managed resource.
- integration
Guid string - server
Token string
- id str
- The provider-assigned unique ID for this managed resource.
- integration_
guid str - server_
token str
- id String
- The provider-assigned unique ID for this managed resource.
- integration
Guid String - server
Token String
Look up Existing IntegrationAzureDspm Resource
Get an existing IntegrationAzureDspm 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?: IntegrationAzureDspmState, opts?: CustomResourceOptions): IntegrationAzureDspm@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
blob_container_name: Optional[str] = None,
credentials: Optional[IntegrationAzureDspmCredentialsArgs] = None,
datastore_filters: Optional[IntegrationAzureDspmDatastoreFiltersArgs] = None,
integration_azure_dspm_id: Optional[str] = None,
integration_guid: Optional[str] = None,
max_file_size_mb: Optional[float] = None,
name: Optional[str] = None,
regions: Optional[Sequence[str]] = None,
retries: Optional[float] = None,
scan_frequency_hours: Optional[float] = None,
server_token: Optional[str] = None,
storage_account_url: Optional[str] = None,
tenant_id: Optional[str] = None) -> IntegrationAzureDspmfunc GetIntegrationAzureDspm(ctx *Context, name string, id IDInput, state *IntegrationAzureDspmState, opts ...ResourceOption) (*IntegrationAzureDspm, error)public static IntegrationAzureDspm Get(string name, Input<string> id, IntegrationAzureDspmState? state, CustomResourceOptions? opts = null)public static IntegrationAzureDspm get(String name, Output<String> id, IntegrationAzureDspmState state, CustomResourceOptions options)resources: _: type: lacework:IntegrationAzureDspm 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.
- Blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- Credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- Datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- Integration
Azure stringDspm Id - Integration
Guid string - Max
File doubleSize Mb - Maximum file size to scan, in megabytes.
- Name string
- The name of the FortiCNAPP DSPM integration.
- Regions List<string>
- The regions where the DSPM scanner is deployed.
- Retries double
- The number of attempts to create the external integration.
- Scan
Frequency doubleHours - How often to scan, in hours.
- Server
Token string - Storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- Tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- Blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- Credentials
Integration
Azure Dspm Credentials Args - The credentials used by Lacework platform to access the Azure SP.
- Datastore
Filters IntegrationAzure Dspm Datastore Filters Args - Filter which datastores are scanned.
- Integration
Azure stringDspm Id - Integration
Guid string - Max
File float64Size Mb - Maximum file size to scan, in megabytes.
- Name string
- The name of the FortiCNAPP DSPM integration.
- Regions []string
- The regions where the DSPM scanner is deployed.
- Retries float64
- The number of attempts to create the external integration.
- Scan
Frequency float64Hours - How often to scan, in hours.
- Server
Token string - Storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- Tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container StringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- integration
Azure StringDspm Id - integration
Guid String - max
File DoubleSize Mb - Maximum file size to scan, in megabytes.
- name String
- The name of the FortiCNAPP DSPM integration.
- regions List<String>
- The regions where the DSPM scanner is deployed.
- retries Double
- The number of attempts to create the external integration.
- scan
Frequency DoubleHours - How often to scan, in hours.
- server
Token String - storage
Account StringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- tenant
Id String - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container stringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials - The credentials used by Lacework platform to access the Azure SP.
- datastore
Filters IntegrationAzure Dspm Datastore Filters - Filter which datastores are scanned.
- integration
Azure stringDspm Id - integration
Guid string - max
File numberSize Mb - Maximum file size to scan, in megabytes.
- name string
- The name of the FortiCNAPP DSPM integration.
- regions string[]
- The regions where the DSPM scanner is deployed.
- retries number
- The number of attempts to create the external integration.
- scan
Frequency numberHours - How often to scan, in hours.
- server
Token string - storage
Account stringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- tenant
Id string - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob_
container_ strname - The name of the blob container where the DSPM scanner writes results and state.
- credentials
Integration
Azure Dspm Credentials Args - The credentials used by Lacework platform to access the Azure SP.
- datastore_
filters IntegrationAzure Dspm Datastore Filters Args - Filter which datastores are scanned.
- integration_
azure_ strdspm_ id - integration_
guid str - max_
file_ floatsize_ mb - Maximum file size to scan, in megabytes.
- name str
- The name of the FortiCNAPP DSPM integration.
- regions Sequence[str]
- The regions where the DSPM scanner is deployed.
- retries float
- The number of attempts to create the external integration.
- scan_
frequency_ floathours - How often to scan, in hours.
- server_
token str - storage_
account_ strurl - The URL of the storage account where the DSPM scanner writes results and state.
- tenant_
id str - The ID of the Azure tenant where the DSPM scanner is deployed.
- blob
Container StringName - The name of the blob container where the DSPM scanner writes results and state.
- credentials Property Map
- The credentials used by Lacework platform to access the Azure SP.
- datastore
Filters Property Map - Filter which datastores are scanned.
- integration
Azure StringDspm Id - integration
Guid String - max
File NumberSize Mb - Maximum file size to scan, in megabytes.
- name String
- The name of the FortiCNAPP DSPM integration.
- regions List<String>
- The regions where the DSPM scanner is deployed.
- retries Number
- The number of attempts to create the external integration.
- scan
Frequency NumberHours - How often to scan, in hours.
- server
Token String - storage
Account StringUrl - The URL of the storage account where the DSPM scanner writes results and state.
- tenant
Id String - The ID of the Azure tenant where the DSPM scanner is deployed.
Supporting Types
IntegrationAzureDspmCredentials, IntegrationAzureDspmCredentialsArgs
- Client
Id string - The clientID of the Azure SP used by Lacework platform.
- Client
Secret string - The client secret of the Azure SP used by Lacework platform.
- Client
Id string - The clientID of the Azure SP used by Lacework platform.
- Client
Secret string - The client secret of the Azure SP used by Lacework platform.
- client
Id String - The clientID of the Azure SP used by Lacework platform.
- client
Secret String - The client secret of the Azure SP used by Lacework platform.
- client
Id string - The clientID of the Azure SP used by Lacework platform.
- client
Secret string - The client secret of the Azure SP used by Lacework platform.
- client_
id str - The clientID of the Azure SP used by Lacework platform.
- client_
secret str - The client secret of the Azure SP used by Lacework platform.
- client
Id String - The clientID of the Azure SP used by Lacework platform.
- client
Secret String - The client secret of the Azure SP used by Lacework platform.
IntegrationAzureDspmDatastoreFilters, IntegrationAzureDspmDatastoreFiltersArgs
- Filter
Mode string - Filter mode: 'include' or 'exclude'.
- Datastore
Names List<string> - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
- Filter
Mode string - Filter mode: 'include' or 'exclude'.
- Datastore
Names []string - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
- filter
Mode String - Filter mode: 'include' or 'exclude'.
- datastore
Names List<String> - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
- filter
Mode string - Filter mode: 'include' or 'exclude'.
- datastore
Names string[] - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
- filter_
mode str - Filter mode: 'include' or 'exclude'.
- datastore_
names Sequence[str] - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
- filter
Mode String - Filter mode: 'include' or 'exclude'.
- datastore
Names List<String> - List of datastore names to include or exclude. Required when filter_mode is 'INCLUDE' or 'EXCLUDE', must not be set when filter_mode is 'ALL'.
Package Details
- Repository
- lacework lacework/terraform-provider-lacework
- License
- Notes
- This Pulumi package is based on the
laceworkTerraform Provider.
published on Tuesday, Mar 17, 2026 by lacework
