WorkersDomainArgs

data class WorkersDomainArgs(val accountId: Output<String>? = null, val environment: Output<String>? = null, val hostname: Output<String>? = null, val service: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<WorkersDomainArgs>

Creates a Worker Custom Domain.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.WorkersDomain("example", {
accountId: "f037e56e89293a057740de681ac9abbe",
hostname: "subdomain.example.com",
service: "my-service",
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.WorkersDomain("example",
account_id="f037e56e89293a057740de681ac9abbe",
hostname="subdomain.example.com",
service="my-service",
zone_id="0da42c8d2132a9ddaf714f9e7c920711")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.WorkersDomain("example", new()
{
AccountId = "f037e56e89293a057740de681ac9abbe",
Hostname = "subdomain.example.com",
Service = "my-service",
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
});
});
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.NewWorkersDomain(ctx, "example", &cloudflare.WorkersDomainArgs{
AccountId: pulumi.String("f037e56e89293a057740de681ac9abbe"),
Hostname: pulumi.String("subdomain.example.com"),
Service: pulumi.String("my-service"),
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.WorkersDomain;
import com.pulumi.cloudflare.WorkersDomainArgs;
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 example = new WorkersDomain("example", WorkersDomainArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.hostname("subdomain.example.com")
.service("my-service")
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.build());
}
}
resources:
example:
type: cloudflare:WorkersDomain
properties:
accountId: f037e56e89293a057740de681ac9abbe
hostname: subdomain.example.com
service: my-service
zoneId: 0da42c8d2132a9ddaf714f9e7c920711

Import

$ pulumi import cloudflare:index/workersDomain:WorkersDomain example <account_id>/<worker_domain_id>

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, environment: Output<String>? = null, hostname: Output<String>? = null, service: Output<String>? = null, zoneId: Output<String>? = null)

Properties

Link copied to clipboard
val accountId: Output<String>? = null

The account identifier to target for the resource. Modifying this attribute will force creation of a new resource.

Link copied to clipboard
val environment: Output<String>? = null

The name of the Worker environment. Defaults to production.

Link copied to clipboard
val hostname: Output<String>? = null

Hostname of the Worker Domain.

Link copied to clipboard
val service: Output<String>? = null

Name of worker script to attach the domain to.

Link copied to clipboard
val zoneId: Output<String>? = null

The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.

Functions

Link copied to clipboard
open override fun toJava(): WorkersDomainArgs