ArgoTunnel

class ArgoTunnel : KotlinCustomResource

Argo Tunnel exposes applications running on your local web server on any network with an internet connection without manually adding DNS records or configuring a firewall or router.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.ArgoTunnel;
import com.pulumi.cloudflare.ArgoTunnelArgs;
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 ArgoTunnel("example", ArgoTunnelArgs.builder()
.accountId("d41d8cd98f00b204e9800998ecf8427e")
.name("my-tunnel")
.secret("AQIDBAUGBwgBAgMEBQYHCAECAwQFBgcIAQIDBAUGBwg=")
.build());
}
}

Import

Argo Tunnels can be imported a composite ID of the account ID and tunnel UUID.

$ pulumi import cloudflare:index/argoTunnel:ArgoTunnel example d41d8cd98f00b204e9800998ecf8427e/fd2455cb-5fcc-4c13-8738-8d8d2605237f

where - d41d8cd98f00b204e9800998ecf8427e is the account ID - fd2455cb-5fcc-4c13-8738-8d8d2605237f is the Argo Tunnel UUID

Properties

Link copied to clipboard
val accountId: Output<String>

The Cloudflare account ID that you wish to manage the Argo Tunnel on.

Link copied to clipboard
val cname: Output<String>

Usable CNAME for accessing the Argo Tunnel.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

A user-friendly name chosen when the tunnel is created. Cannot be empty.

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

32 or more bytes, encoded as a base64 string. The Create Argo Tunnel endpoint sets this as the tunnel's password. Anyone wishing to run the tunnel needs this password.

Link copied to clipboard
val tunnelToken: Output<String>

Token used by a connector to authenticate and run the tunnel.

Link copied to clipboard
val urn: Output<String>