published on Thursday, Jul 16, 2026 by Pulumi
published on Thursday, Jul 16, 2026 by Pulumi
Accepted Permissions
Zero Trust ReadZero Trust Write
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustDlpDataTag = new cloudflare.ZeroTrustDlpDataTag("example_zero_trust_dlp_data_tag", {
accountId: "account_id",
categoryId: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
name: "name",
description: "description",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_dlp_data_tag = cloudflare.ZeroTrustDlpDataTag("example_zero_trust_dlp_data_tag",
account_id="account_id",
category_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
name="name",
description="description")
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewZeroTrustDlpDataTag(ctx, "example_zero_trust_dlp_data_tag", &cloudflare.ZeroTrustDlpDataTagArgs{
AccountId: pulumi.String("account_id"),
CategoryId: pulumi.String("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"),
Name: pulumi.String("name"),
Description: pulumi.String("description"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var exampleZeroTrustDlpDataTag = new Cloudflare.ZeroTrustDlpDataTag("example_zero_trust_dlp_data_tag", new()
{
AccountId = "account_id",
CategoryId = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
Name = "name",
Description = "description",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ZeroTrustDlpDataTag;
import com.pulumi.cloudflare.ZeroTrustDlpDataTagArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 exampleZeroTrustDlpDataTag = new ZeroTrustDlpDataTag("exampleZeroTrustDlpDataTag", ZeroTrustDlpDataTagArgs.builder()
.accountId("account_id")
.categoryId("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e")
.name("name")
.description("description")
.build());
}
}
resources:
exampleZeroTrustDlpDataTag:
type: cloudflare:ZeroTrustDlpDataTag
name: example_zero_trust_dlp_data_tag
properties:
accountId: account_id
categoryId: 182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e
name: name
description: description
pulumi {
required_providers {
cloudflare = {
source = "pulumi/cloudflare"
}
}
}
resource "cloudflare_zerotrustdlpdatatag" "example_zero_trust_dlp_data_tag" {
account_id = "account_id"
category_id = "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
name = "name"
description = "description"
}
Create ZeroTrustDlpDataTag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ZeroTrustDlpDataTag(name: string, args: ZeroTrustDlpDataTagArgs, opts?: CustomResourceOptions);@overload
def ZeroTrustDlpDataTag(resource_name: str,
args: ZeroTrustDlpDataTagArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ZeroTrustDlpDataTag(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
category_id: Optional[str] = None,
name: Optional[str] = None,
description: Optional[str] = None)func NewZeroTrustDlpDataTag(ctx *Context, name string, args ZeroTrustDlpDataTagArgs, opts ...ResourceOption) (*ZeroTrustDlpDataTag, error)public ZeroTrustDlpDataTag(string name, ZeroTrustDlpDataTagArgs args, CustomResourceOptions? opts = null)
public ZeroTrustDlpDataTag(String name, ZeroTrustDlpDataTagArgs args)
public ZeroTrustDlpDataTag(String name, ZeroTrustDlpDataTagArgs args, CustomResourceOptions options)
type: cloudflare:ZeroTrustDlpDataTag
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "cloudflare_zero_trust_dlp_data_tag" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ZeroTrustDlpDataTagArgs
- 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 ZeroTrustDlpDataTagArgs
- 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 ZeroTrustDlpDataTagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ZeroTrustDlpDataTagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ZeroTrustDlpDataTagArgs
- 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 zeroTrustDlpDataTagResource = new Cloudflare.ZeroTrustDlpDataTag("zeroTrustDlpDataTagResource", new()
{
AccountId = "string",
CategoryId = "string",
Name = "string",
Description = "string",
});
example, err := cloudflare.NewZeroTrustDlpDataTag(ctx, "zeroTrustDlpDataTagResource", &cloudflare.ZeroTrustDlpDataTagArgs{
AccountId: pulumi.String("string"),
CategoryId: pulumi.String("string"),
Name: pulumi.String("string"),
Description: pulumi.String("string"),
})
resource "cloudflare_zero_trust_dlp_data_tag" "zeroTrustDlpDataTagResource" {
lifecycle {
create_before_destroy = true
}
account_id = "string"
category_id = "string"
name = "string"
description = "string"
}
var zeroTrustDlpDataTagResource = new ZeroTrustDlpDataTag("zeroTrustDlpDataTagResource", ZeroTrustDlpDataTagArgs.builder()
.accountId("string")
.categoryId("string")
.name("string")
.description("string")
.build());
zero_trust_dlp_data_tag_resource = cloudflare.ZeroTrustDlpDataTag("zeroTrustDlpDataTagResource",
account_id="string",
category_id="string",
name="string",
description="string")
const zeroTrustDlpDataTagResource = new cloudflare.ZeroTrustDlpDataTag("zeroTrustDlpDataTagResource", {
accountId: "string",
categoryId: "string",
name: "string",
description: "string",
});
type: cloudflare:ZeroTrustDlpDataTag
properties:
accountId: string
categoryId: string
description: string
name: string
ZeroTrustDlpDataTag 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 ZeroTrustDlpDataTag resource accepts the following input properties:
- Account
Id string - Category
Id string - Name string
- Description string
- Account
Id string - Category
Id string - Name string
- Description string
- account_
id string - category_
id string - name string
- description string
- account
Id String - category
Id String - name String
- description String
- account
Id string - category
Id string - name string
- description string
- account_
id str - category_
id str - name str
- description str
- account
Id String - category
Id String - name String
- description String
Outputs
All input properties are implicitly available as output properties. Additionally, the ZeroTrustDlpDataTag resource produces the following output properties:
- created_
at string - id string
- The provider-assigned unique ID for this managed resource.
- updated_
at string
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- updated_
at str
Look up Existing ZeroTrustDlpDataTag Resource
Get an existing ZeroTrustDlpDataTag 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?: ZeroTrustDlpDataTagState, opts?: CustomResourceOptions): ZeroTrustDlpDataTag@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
category_id: Optional[str] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
updated_at: Optional[str] = None) -> ZeroTrustDlpDataTagfunc GetZeroTrustDlpDataTag(ctx *Context, name string, id IDInput, state *ZeroTrustDlpDataTagState, opts ...ResourceOption) (*ZeroTrustDlpDataTag, error)public static ZeroTrustDlpDataTag Get(string name, Input<string> id, ZeroTrustDlpDataTagState? state, CustomResourceOptions? opts = null)public static ZeroTrustDlpDataTag get(String name, Output<String> id, ZeroTrustDlpDataTagState state, CustomResourceOptions options)resources: _: type: cloudflare:ZeroTrustDlpDataTag get: id: ${id}import {
to = cloudflare_zero_trust_dlp_data_tag.example
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.
- Account
Id string - Category
Id string - Created
At string - Description string
- Name string
- Updated
At string
- Account
Id string - Category
Id string - Created
At string - Description string
- Name string
- Updated
At string
- account_
id string - category_
id string - created_
at string - description string
- name string
- updated_
at string
- account
Id String - category
Id String - created
At String - description String
- name String
- updated
At String
- account
Id string - category
Id string - created
At string - description string
- name string
- updated
At string
- account_
id str - category_
id str - created_
at str - description str
- name str
- updated_
at str
- account
Id String - category
Id String - created
At String - description String
- name String
- updated
At String
Import
$ pulumi import cloudflare:index/zeroTrustDlpDataTag:ZeroTrustDlpDataTag example '<account_id>/<category_id>/<tag_id>'
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.
published on Thursday, Jul 16, 2026 by Pulumi