1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. WorkerSecret
Cloudflare v6.0.0 published on Monday, Apr 14, 2025 by Pulumi

cloudflare.WorkerSecret

Explore with Pulumi AI

Deprecated: cloudflare.index/workersecret.WorkerSecret has been deprecated in favor of cloudflare.index/workerssecret.WorkersSecret

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";

const exampleWorkersSecret = new cloudflare.WorkersSecret("example_workers_secret", {
    accountId: "023e105f4ecef8ad9ca31a8372d0c353",
    dispatchNamespace: "my-dispatch-namespace",
    scriptName: "this-is_my_script-01",
    name: "MY_SECRET",
    text: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
    type: "secret_text",
});
Copy
import pulumi
import pulumi_cloudflare as cloudflare

example_workers_secret = cloudflare.WorkersSecret("example_workers_secret",
    account_id="023e105f4ecef8ad9ca31a8372d0c353",
    dispatch_namespace="my-dispatch-namespace",
    script_name="this-is_my_script-01",
    name="MY_SECRET",
    text="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
    type="secret_text")
Copy
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.NewWorkersSecret(ctx, "example_workers_secret", &cloudflare.WorkersSecretArgs{
			AccountId:         pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
			DispatchNamespace: pulumi.String("my-dispatch-namespace"),
			ScriptName:        pulumi.String("this-is_my_script-01"),
			Name:              pulumi.String("MY_SECRET"),
			Text:              pulumi.String("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"),
			Type:              pulumi.String("secret_text"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;

return await Deployment.RunAsync(() => 
{
    var exampleWorkersSecret = new Cloudflare.WorkersSecret("example_workers_secret", new()
    {
        AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
        DispatchNamespace = "my-dispatch-namespace",
        ScriptName = "this-is_my_script-01",
        Name = "MY_SECRET",
        Text = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9",
        Type = "secret_text",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.WorkersSecret;
import com.pulumi.cloudflare.WorkersSecretArgs;
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 exampleWorkersSecret = new WorkersSecret("exampleWorkersSecret", WorkersSecretArgs.builder()
            .accountId("023e105f4ecef8ad9ca31a8372d0c353")
            .dispatchNamespace("my-dispatch-namespace")
            .scriptName("this-is_my_script-01")
            .name("MY_SECRET")
            .text("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9")
            .type("secret_text")
            .build());

    }
}
Copy
resources:
  exampleWorkersSecret:
    type: cloudflare:WorkersSecret
    name: example_workers_secret
    properties:
      accountId: 023e105f4ecef8ad9ca31a8372d0c353
      dispatchNamespace: my-dispatch-namespace
      scriptName: this-is_my_script-01
      name: MY_SECRET
      text: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
      type: secret_text
Copy

Create WorkerSecret Resource

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

Constructor syntax

new WorkerSecret(name: string, args: WorkerSecretArgs, opts?: CustomResourceOptions);
@overload
def WorkerSecret(resource_name: str,
                 args: WorkerSecretArgs,
                 opts: Optional[ResourceOptions] = None)

@overload
def WorkerSecret(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 account_id: Optional[str] = None,
                 dispatch_namespace: Optional[str] = None,
                 name: Optional[str] = None,
                 script_name: Optional[str] = None,
                 text: Optional[str] = None,
                 type: Optional[str] = None)
func NewWorkerSecret(ctx *Context, name string, args WorkerSecretArgs, opts ...ResourceOption) (*WorkerSecret, error)
public WorkerSecret(string name, WorkerSecretArgs args, CustomResourceOptions? opts = null)
public WorkerSecret(String name, WorkerSecretArgs args)
public WorkerSecret(String name, WorkerSecretArgs args, CustomResourceOptions options)
type: cloudflare:WorkerSecret
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkerSecretArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WorkerSecretArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WorkerSecretArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkerSecretArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkerSecretArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

AccountId This property is required. string
Identifier
DispatchNamespace This property is required. string
Name of the Workers for Platforms dispatch namespace.
Name This property is required. string
The name of this secret, this is what will be used to access it inside the Worker.
ScriptName This property is required. string
Name of the script, used in URLs and route configuration.
Text string
The value of the secret.
Type string
The type of secret to put. Available values: "secret_text".
AccountId This property is required. string
Identifier
DispatchNamespace This property is required. string
Name of the Workers for Platforms dispatch namespace.
Name This property is required. string
The name of this secret, this is what will be used to access it inside the Worker.
ScriptName This property is required. string
Name of the script, used in URLs and route configuration.
Text string
The value of the secret.
Type string
The type of secret to put. Available values: "secret_text".
accountId This property is required. String
Identifier
dispatchNamespace This property is required. String
Name of the Workers for Platforms dispatch namespace.
name This property is required. String
The name of this secret, this is what will be used to access it inside the Worker.
scriptName This property is required. String
Name of the script, used in URLs and route configuration.
text String
The value of the secret.
type String
The type of secret to put. Available values: "secret_text".
accountId This property is required. string
Identifier
dispatchNamespace This property is required. string
Name of the Workers for Platforms dispatch namespace.
name This property is required. string
The name of this secret, this is what will be used to access it inside the Worker.
scriptName This property is required. string
Name of the script, used in URLs and route configuration.
text string
The value of the secret.
type string
The type of secret to put. Available values: "secret_text".
account_id This property is required. str
Identifier
dispatch_namespace This property is required. str
Name of the Workers for Platforms dispatch namespace.
name This property is required. str
The name of this secret, this is what will be used to access it inside the Worker.
script_name This property is required. str
Name of the script, used in URLs and route configuration.
text str
The value of the secret.
type str
The type of secret to put. Available values: "secret_text".
accountId This property is required. String
Identifier
dispatchNamespace This property is required. String
Name of the Workers for Platforms dispatch namespace.
name This property is required. String
The name of this secret, this is what will be used to access it inside the Worker.
scriptName This property is required. String
Name of the script, used in URLs and route configuration.
text String
The value of the secret.
type String
The type of secret to put. Available values: "secret_text".

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing WorkerSecret Resource

Get an existing WorkerSecret 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?: WorkerSecretState, opts?: CustomResourceOptions): WorkerSecret
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        dispatch_namespace: Optional[str] = None,
        name: Optional[str] = None,
        script_name: Optional[str] = None,
        text: Optional[str] = None,
        type: Optional[str] = None) -> WorkerSecret
func GetWorkerSecret(ctx *Context, name string, id IDInput, state *WorkerSecretState, opts ...ResourceOption) (*WorkerSecret, error)
public static WorkerSecret Get(string name, Input<string> id, WorkerSecretState? state, CustomResourceOptions? opts = null)
public static WorkerSecret get(String name, Output<String> id, WorkerSecretState state, CustomResourceOptions options)
resources:  _:    type: cloudflare:WorkerSecret    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AccountId string
Identifier
DispatchNamespace string
Name of the Workers for Platforms dispatch namespace.
Name string
The name of this secret, this is what will be used to access it inside the Worker.
ScriptName string
Name of the script, used in URLs and route configuration.
Text string
The value of the secret.
Type string
The type of secret to put. Available values: "secret_text".
AccountId string
Identifier
DispatchNamespace string
Name of the Workers for Platforms dispatch namespace.
Name string
The name of this secret, this is what will be used to access it inside the Worker.
ScriptName string
Name of the script, used in URLs and route configuration.
Text string
The value of the secret.
Type string
The type of secret to put. Available values: "secret_text".
accountId String
Identifier
dispatchNamespace String
Name of the Workers for Platforms dispatch namespace.
name String
The name of this secret, this is what will be used to access it inside the Worker.
scriptName String
Name of the script, used in URLs and route configuration.
text String
The value of the secret.
type String
The type of secret to put. Available values: "secret_text".
accountId string
Identifier
dispatchNamespace string
Name of the Workers for Platforms dispatch namespace.
name string
The name of this secret, this is what will be used to access it inside the Worker.
scriptName string
Name of the script, used in URLs and route configuration.
text string
The value of the secret.
type string
The type of secret to put. Available values: "secret_text".
account_id str
Identifier
dispatch_namespace str
Name of the Workers for Platforms dispatch namespace.
name str
The name of this secret, this is what will be used to access it inside the Worker.
script_name str
Name of the script, used in URLs and route configuration.
text str
The value of the secret.
type str
The type of secret to put. Available values: "secret_text".
accountId String
Identifier
dispatchNamespace String
Name of the Workers for Platforms dispatch namespace.
name String
The name of this secret, this is what will be used to access it inside the Worker.
scriptName String
Name of the script, used in URLs and route configuration.
text String
The value of the secret.
type String
The type of secret to put. Available values: "secret_text".

Import

$ pulumi import cloudflare:index/workerSecret:WorkerSecret example '<account_id>/<dispatch_namespace>/<script_name>/<secret_name>'
Copy

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 cloudflare Terraform Provider.