Cloudflare v6.10.1 published on Wednesday, Oct 22, 2025 by Pulumi
cloudflare.getZeroTrustTunnelCloudflared
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustTunnelCloudflared = cloudflare.getZeroTrustTunnelCloudflared({
    accountId: "699d98642c564d2e855e9661899b7252",
    tunnelId: "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_tunnel_cloudflared = cloudflare.get_zero_trust_tunnel_cloudflared(account_id="699d98642c564d2e855e9661899b7252",
    tunnel_id="f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
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.LookupZeroTrustTunnelCloudflared(ctx, &cloudflare.LookupZeroTrustTunnelCloudflaredArgs{
			AccountId: "699d98642c564d2e855e9661899b7252",
			TunnelId:  pulumi.StringRef("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415"),
		}, nil)
		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 exampleZeroTrustTunnelCloudflared = Cloudflare.GetZeroTrustTunnelCloudflared.Invoke(new()
    {
        AccountId = "699d98642c564d2e855e9661899b7252",
        TunnelId = "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.CloudflareFunctions;
import com.pulumi.cloudflare.inputs.GetZeroTrustTunnelCloudflaredArgs;
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) {
        final var exampleZeroTrustTunnelCloudflared = CloudflareFunctions.getZeroTrustTunnelCloudflared(GetZeroTrustTunnelCloudflaredArgs.builder()
            .accountId("699d98642c564d2e855e9661899b7252")
            .tunnelId("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
            .build());
    }
}
variables:
  exampleZeroTrustTunnelCloudflared:
    fn::invoke:
      function: cloudflare:getZeroTrustTunnelCloudflared
      arguments:
        accountId: 699d98642c564d2e855e9661899b7252
        tunnelId: f70ff985-a4ef-4643-bbbc-4a0ed4fc8415
Using getZeroTrustTunnelCloudflared
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getZeroTrustTunnelCloudflared(args: GetZeroTrustTunnelCloudflaredArgs, opts?: InvokeOptions): Promise<GetZeroTrustTunnelCloudflaredResult>
function getZeroTrustTunnelCloudflaredOutput(args: GetZeroTrustTunnelCloudflaredOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustTunnelCloudflaredResult>def get_zero_trust_tunnel_cloudflared(account_id: Optional[str] = None,
                                      filter: Optional[GetZeroTrustTunnelCloudflaredFilter] = None,
                                      tunnel_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetZeroTrustTunnelCloudflaredResult
def get_zero_trust_tunnel_cloudflared_output(account_id: Optional[pulumi.Input[str]] = None,
                                      filter: Optional[pulumi.Input[GetZeroTrustTunnelCloudflaredFilterArgs]] = None,
                                      tunnel_id: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustTunnelCloudflaredResult]func LookupZeroTrustTunnelCloudflared(ctx *Context, args *LookupZeroTrustTunnelCloudflaredArgs, opts ...InvokeOption) (*LookupZeroTrustTunnelCloudflaredResult, error)
func LookupZeroTrustTunnelCloudflaredOutput(ctx *Context, args *LookupZeroTrustTunnelCloudflaredOutputArgs, opts ...InvokeOption) LookupZeroTrustTunnelCloudflaredResultOutput> Note: This function is named LookupZeroTrustTunnelCloudflared in the Go SDK.
public static class GetZeroTrustTunnelCloudflared 
{
    public static Task<GetZeroTrustTunnelCloudflaredResult> InvokeAsync(GetZeroTrustTunnelCloudflaredArgs args, InvokeOptions? opts = null)
    public static Output<GetZeroTrustTunnelCloudflaredResult> Invoke(GetZeroTrustTunnelCloudflaredInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetZeroTrustTunnelCloudflaredResult> getZeroTrustTunnelCloudflared(GetZeroTrustTunnelCloudflaredArgs args, InvokeOptions options)
public static Output<GetZeroTrustTunnelCloudflaredResult> getZeroTrustTunnelCloudflared(GetZeroTrustTunnelCloudflaredArgs args, InvokeOptions options)
fn::invoke:
  function: cloudflare:index/getZeroTrustTunnelCloudflared:getZeroTrustTunnelCloudflared
  arguments:
    # arguments dictionaryThe following arguments are supported:
- AccountId string
- Cloudflare account ID
- Filter
GetZero Trust Tunnel Cloudflared Filter 
- TunnelId string
- UUID of the tunnel.
- AccountId string
- Cloudflare account ID
- Filter
GetZero Trust Tunnel Cloudflared Filter 
- TunnelId string
- UUID of the tunnel.
- accountId String
- Cloudflare account ID
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnelId String
- UUID of the tunnel.
- accountId string
- Cloudflare account ID
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnelId string
- UUID of the tunnel.
- account_id str
- Cloudflare account ID
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnel_id str
- UUID of the tunnel.
- accountId String
- Cloudflare account ID
- filter Property Map
- tunnelId String
- UUID of the tunnel.
getZeroTrustTunnelCloudflared Result
The following output properties are available:
- AccountId string
- Cloudflare account ID
- AccountTag string
- Cloudflare account ID
- ConfigSrc string
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- Connections
List<GetZero Trust Tunnel Cloudflared Connection> 
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- ConnsActive stringAt 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- ConnsInactive stringAt 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- CreatedAt string
- Timestamp of when the resource was created.
- DeletedAt string
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- Id string
- UUID of the tunnel.
- Metadata string
- Metadata associated with the tunnel.
- Name string
- A user-friendly name for a tunnel.
- RemoteConfig bool
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- Status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- TunType string
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- Filter
GetZero Trust Tunnel Cloudflared Filter 
- TunnelId string
- UUID of the tunnel.
- AccountId string
- Cloudflare account ID
- AccountTag string
- Cloudflare account ID
- ConfigSrc string
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- Connections
[]GetZero Trust Tunnel Cloudflared Connection 
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- ConnsActive stringAt 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- ConnsInactive stringAt 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- CreatedAt string
- Timestamp of when the resource was created.
- DeletedAt string
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- Id string
- UUID of the tunnel.
- Metadata string
- Metadata associated with the tunnel.
- Name string
- A user-friendly name for a tunnel.
- RemoteConfig bool
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- Status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- TunType string
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- Filter
GetZero Trust Tunnel Cloudflared Filter 
- TunnelId string
- UUID of the tunnel.
- accountId String
- Cloudflare account ID
- accountTag String
- Cloudflare account ID
- configSrc String
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- connections
List<GetZero Trust Tunnel Cloudflared Connection> 
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- connsActive StringAt 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- connsInactive StringAt 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- createdAt String
- Timestamp of when the resource was created.
- deletedAt String
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- id String
- UUID of the tunnel.
- metadata String
- Metadata associated with the tunnel.
- name String
- A user-friendly name for a tunnel.
- remoteConfig Boolean
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- status String
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- tunType String
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnelId String
- UUID of the tunnel.
- accountId string
- Cloudflare account ID
- accountTag string
- Cloudflare account ID
- configSrc string
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- connections
GetZero Trust Tunnel Cloudflared Connection[] 
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- connsActive stringAt 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- connsInactive stringAt 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- createdAt string
- Timestamp of when the resource was created.
- deletedAt string
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- id string
- UUID of the tunnel.
- metadata string
- Metadata associated with the tunnel.
- name string
- A user-friendly name for a tunnel.
- remoteConfig boolean
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- tunType string
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnelId string
- UUID of the tunnel.
- account_id str
- Cloudflare account ID
- account_tag str
- Cloudflare account ID
- config_src str
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- connections
Sequence[GetZero Trust Tunnel Cloudflared Connection] 
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- conns_active_ strat 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- conns_inactive_ strat 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- created_at str
- Timestamp of when the resource was created.
- deleted_at str
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- id str
- UUID of the tunnel.
- metadata str
- Metadata associated with the tunnel.
- name str
- A user-friendly name for a tunnel.
- remote_config bool
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- status str
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- tun_type str
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- filter
GetZero Trust Tunnel Cloudflared Filter 
- tunnel_id str
- UUID of the tunnel.
- accountId String
- Cloudflare account ID
- accountTag String
- Cloudflare account ID
- configSrc String
- Indicates if this is a locally or remotely configured tunnel. If local, manage the tunnel using a YAML file on the origin machine. Ifcloudflare, manage the tunnel on the Zero Trust dashboard. Available values: "local", "cloudflare".
- connections List<Property Map>
- The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- connsActive StringAt 
- Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If null, the tunnel is inactive.
- connsInactive StringAt 
- Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If null, the tunnel is active.
- createdAt String
- Timestamp of when the resource was created.
- deletedAt String
- Timestamp of when the resource was deleted. If null, the resource has not been deleted.
- id String
- UUID of the tunnel.
- metadata String
- Metadata associated with the tunnel.
- name String
- A user-friendly name for a tunnel.
- remoteConfig Boolean
- If true, the tunnel can be configured remotely from the Zero Trust dashboard. Iffalse, the tunnel must be configured locally on the origin machine.
- status String
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- tunType String
- The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", <span pulumi-lang-nodejs=""ipSec"" pulumi-lang-dotnet=""IpSec"" pulumi-lang-go=""ipSec"" pulumi-lang-python=""ip_sec"" pulumi-lang-yaml=""ipSec"" pulumi-lang-java=""ipSec"">"ip_sec", "gre", "cni".
- filter Property Map
- tunnelId String
- UUID of the tunnel.
Supporting Types
GetZeroTrustTunnelCloudflaredConnection     
- ClientId string
- UUID of the Cloudflare Tunnel connector.
- ClientVersion string
- The cloudflared version used to establish this connection.
- ColoName string
- The Cloudflare data center used for this connection.
- Id string
- UUID of the Cloudflare Tunnel connection.
- IsPending boolReconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- OpenedAt string
- Timestamp of when the connection was established.
- OriginIp string
- The public IP address of the host running cloudflared.
- Uuid string
- UUID of the Cloudflare Tunnel connection.
- ClientId string
- UUID of the Cloudflare Tunnel connector.
- ClientVersion string
- The cloudflared version used to establish this connection.
- ColoName string
- The Cloudflare data center used for this connection.
- Id string
- UUID of the Cloudflare Tunnel connection.
- IsPending boolReconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- OpenedAt string
- Timestamp of when the connection was established.
- OriginIp string
- The public IP address of the host running cloudflared.
- Uuid string
- UUID of the Cloudflare Tunnel connection.
- clientId String
- UUID of the Cloudflare Tunnel connector.
- clientVersion String
- The cloudflared version used to establish this connection.
- coloName String
- The Cloudflare data center used for this connection.
- id String
- UUID of the Cloudflare Tunnel connection.
- isPending BooleanReconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- openedAt String
- Timestamp of when the connection was established.
- originIp String
- The public IP address of the host running cloudflared.
- uuid String
- UUID of the Cloudflare Tunnel connection.
- clientId string
- UUID of the Cloudflare Tunnel connector.
- clientVersion string
- The cloudflared version used to establish this connection.
- coloName string
- The Cloudflare data center used for this connection.
- id string
- UUID of the Cloudflare Tunnel connection.
- isPending booleanReconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- openedAt string
- Timestamp of when the connection was established.
- originIp string
- The public IP address of the host running cloudflared.
- uuid string
- UUID of the Cloudflare Tunnel connection.
- client_id str
- UUID of the Cloudflare Tunnel connector.
- client_version str
- The cloudflared version used to establish this connection.
- colo_name str
- The Cloudflare data center used for this connection.
- id str
- UUID of the Cloudflare Tunnel connection.
- is_pending_ boolreconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- opened_at str
- Timestamp of when the connection was established.
- origin_ip str
- The public IP address of the host running cloudflared.
- uuid str
- UUID of the Cloudflare Tunnel connection.
- clientId String
- UUID of the Cloudflare Tunnel connector.
- clientVersion String
- The cloudflared version used to establish this connection.
- coloName String
- The Cloudflare data center used for this connection.
- id String
- UUID of the Cloudflare Tunnel connection.
- isPending BooleanReconnect 
- Cloudflare continues to track connections for several minutes after they disconnect. This is an optimization to improve latency and reliability of reconnecting. If true, the connection has disconnected but is still being tracked. Iffalse, the connection is actively serving traffic.
- openedAt String
- Timestamp of when the connection was established.
- originIp String
- The public IP address of the host running cloudflared.
- uuid String
- UUID of the Cloudflare Tunnel connection.
GetZeroTrustTunnelCloudflaredFilter     
- ExcludePrefix string
- ExistedAt string
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- IncludePrefix string
- IsDeleted bool
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- Name string
- A user-friendly name for a tunnel.
- Status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- Uuid string
- UUID of the tunnel.
- WasActive stringAt 
- WasInactive stringAt 
- ExcludePrefix string
- ExistedAt string
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- IncludePrefix string
- IsDeleted bool
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- Name string
- A user-friendly name for a tunnel.
- Status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- Uuid string
- UUID of the tunnel.
- WasActive stringAt 
- WasInactive stringAt 
- excludePrefix String
- existedAt String
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- includePrefix String
- isDeleted Boolean
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- name String
- A user-friendly name for a tunnel.
- status String
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- uuid String
- UUID of the tunnel.
- wasActive StringAt 
- wasInactive StringAt 
- excludePrefix string
- existedAt string
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- includePrefix string
- isDeleted boolean
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- name string
- A user-friendly name for a tunnel.
- status string
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- uuid string
- UUID of the tunnel.
- wasActive stringAt 
- wasInactive stringAt 
- exclude_prefix str
- existed_at str
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include_prefix str
- is_deleted bool
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- name str
- A user-friendly name for a tunnel.
- status str
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- uuid str
- UUID of the tunnel.
- was_active_ strat 
- was_inactive_ strat 
- excludePrefix String
- existedAt String
- If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- includePrefix String
- isDeleted Boolean
- If true, only include deleted tunnels. Iffalse, exclude deleted tunnels. If empty, all tunnels will be included.
- name String
- A user-friendly name for a tunnel.
- status String
- The status of the tunnel. Valid values are inactive(tunnel has never been run),degraded(tunnel is active and able to serve traffic but in an unhealthy state),healthy(tunnel is active and able to serve traffic), ordown(tunnel can not serve traffic as it has no connections to the Cloudflare Edge). Available values: "inactive", "degraded", "healthy", "down".
- uuid String
- UUID of the tunnel.
- wasActive StringAt 
- wasInactive StringAt 
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the cloudflareTerraform Provider.
