WorkerDomain

class WorkerDomain : KotlinCustomResource

Creates a Worker Custom Domain.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.WorkerDomain;
import com.pulumi.cloudflare.WorkerDomainArgs;
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 WorkerDomain("example", WorkerDomainArgs.builder()
.accountId("f037e56e89293a057740de681ac9abbe")
.hostname("subdomain.example.com")
.service("my-service")
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.build());
}
}

Import

$ pulumi import cloudflare:index/workerDomain:WorkerDomain example <account_id>/<worker_domain_id>

Properties

Link copied to clipboard
val accountId: Output<String>

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>?

The name of the Worker environment. Defaults to production.

Link copied to clipboard
val hostname: Output<String>

Hostname of the Worker Domain.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val service: Output<String>

Name of worker script to attach the domain to.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val zoneId: Output<String>

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