1. Packages
  2. Cloudflare
  3. API Docs
  4. WorkerSecret
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

cloudflare.WorkerSecret

Explore with Pulumi AI

cloudflare logo
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a Cloudflare Worker secret resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const mySecret = new cloudflare.WorkerSecret("mySecret", {
        accountId: "f037e56e89293a057740de681ac9abbe",
        name: "MY_EXAMPLE_SECRET_TEXT",
        scriptName: "script_1",
        secretText: "my_secret_value",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    my_secret = cloudflare.WorkerSecret("mySecret",
        account_id="f037e56e89293a057740de681ac9abbe",
        name="MY_EXAMPLE_SECRET_TEXT",
        script_name="script_1",
        secret_text="my_secret_value")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewWorkerSecret(ctx, "mySecret", &cloudflare.WorkerSecretArgs{
    			AccountId:  pulumi.String("f037e56e89293a057740de681ac9abbe"),
    			Name:       pulumi.String("MY_EXAMPLE_SECRET_TEXT"),
    			ScriptName: pulumi.String("script_1"),
    			SecretText: pulumi.String("my_secret_value"),
    		})
    		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 mySecret = new Cloudflare.WorkerSecret("mySecret", new()
        {
            AccountId = "f037e56e89293a057740de681ac9abbe",
            Name = "MY_EXAMPLE_SECRET_TEXT",
            ScriptName = "script_1",
            SecretText = "my_secret_value",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.WorkerSecret;
    import com.pulumi.cloudflare.WorkerSecretArgs;
    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 mySecret = new WorkerSecret("mySecret", WorkerSecretArgs.builder()        
                .accountId("f037e56e89293a057740de681ac9abbe")
                .name("MY_EXAMPLE_SECRET_TEXT")
                .scriptName("script_1")
                .secretText("my_secret_value")
                .build());
    
        }
    }
    
    resources:
      mySecret:
        type: cloudflare:WorkerSecret
        properties:
          accountId: f037e56e89293a057740de681ac9abbe
          name: MY_EXAMPLE_SECRET_TEXT
          scriptName: script_1
          secretText: my_secret_value
    

    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,
                     name: Optional[str] = None,
                     script_name: Optional[str] = None,
                     secret_text: 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 string
    The unique name of the resource.
    args WorkerSecretArgs
    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 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 string
    The unique name of the resource.
    args WorkerSecretArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkerSecretArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkerSecretArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var workerSecretResource = new Cloudflare.WorkerSecret("workerSecretResource", new()
    {
        AccountId = "string",
        Name = "string",
        ScriptName = "string",
        SecretText = "string",
    });
    
    example, err := cloudflare.NewWorkerSecret(ctx, "workerSecretResource", &cloudflare.WorkerSecretArgs{
    	AccountId:  pulumi.String("string"),
    	Name:       pulumi.String("string"),
    	ScriptName: pulumi.String("string"),
    	SecretText: pulumi.String("string"),
    })
    
    var workerSecretResource = new WorkerSecret("workerSecretResource", WorkerSecretArgs.builder()        
        .accountId("string")
        .name("string")
        .scriptName("string")
        .secretText("string")
        .build());
    
    worker_secret_resource = cloudflare.WorkerSecret("workerSecretResource",
        account_id="string",
        name="string",
        script_name="string",
        secret_text="string")
    
    const workerSecretResource = new cloudflare.WorkerSecret("workerSecretResource", {
        accountId: "string",
        name: "string",
        scriptName: "string",
        secretText: "string",
    });
    
    type: cloudflare:WorkerSecret
    properties:
        accountId: string
        name: string
        scriptName: string
        secretText: string
    

    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

    The WorkerSecret resource accepts the following input properties:

    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    ScriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    SecretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    ScriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    SecretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName String
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText String
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId string
    The account identifier to target for the resource.
    name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    account_id str
    The account identifier to target for the resource.
    name str
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    script_name str
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secret_text str
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName String
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText String
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.

    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,
            name: Optional[str] = None,
            script_name: Optional[str] = None,
            secret_text: 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)
    Resource lookup is not supported in YAML
    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:
    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    ScriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    SecretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    AccountId string
    The account identifier to target for the resource.
    Name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    ScriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    SecretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName String
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText String
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId string
    The account identifier to target for the resource.
    name string
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName string
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText string
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    account_id str
    The account identifier to target for the resource.
    name str
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    script_name str
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secret_text str
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.
    accountId String
    The account identifier to target for the resource.
    name String
    The name of the Worker secret. Modifying this attribute will force creation of a new resource.
    scriptName String
    The name of the Worker script to associate the secret with. Modifying this attribute will force creation of a new resource.
    secretText String
    The text of the Worker secret. Modifying this attribute will force creation of a new resource.

    Import

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

    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.
    cloudflare logo
    Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi