Cloudflare v6.0.0 published on Monday, Apr 14, 2025 by Pulumi
cloudflare.getZeroTrustTunnelCloudflareds
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const exampleZeroTrustTunnelCloudflareds = cloudflare.getZeroTrustTunnelCloudflareds({
accountId: "699d98642c564d2e855e9661899b7252",
excludePrefix: "vpc1-",
existedAt: "2019-10-12T07%3A20%3A50.52Z",
includePrefix: "vpc1-",
isDeleted: true,
name: "blog",
status: "inactive",
uuid: "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
wasActiveAt: "2009-11-10T23:00:00Z",
wasInactiveAt: "2009-11-10T23:00:00Z",
});
import pulumi
import pulumi_cloudflare as cloudflare
example_zero_trust_tunnel_cloudflareds = cloudflare.get_zero_trust_tunnel_cloudflareds(account_id="699d98642c564d2e855e9661899b7252",
exclude_prefix="vpc1-",
existed_at="2019-10-12T07%3A20%3A50.52Z",
include_prefix="vpc1-",
is_deleted=True,
name="blog",
status="inactive",
uuid="f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
was_active_at="2009-11-10T23:00:00Z",
was_inactive_at="2009-11-10T23:00:00Z")
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.LookupZeroTrustTunnelCloudflareds(ctx, &cloudflare.LookupZeroTrustTunnelCloudflaredsArgs{
AccountId: "699d98642c564d2e855e9661899b7252",
ExcludePrefix: pulumi.StringRef("vpc1-"),
ExistedAt: pulumi.StringRef("2019-10-12T07%3A20%3A50.52Z"),
IncludePrefix: pulumi.StringRef("vpc1-"),
IsDeleted: pulumi.BoolRef(true),
Name: pulumi.StringRef("blog"),
Status: pulumi.StringRef("inactive"),
Uuid: pulumi.StringRef("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415"),
WasActiveAt: pulumi.StringRef("2009-11-10T23:00:00Z"),
WasInactiveAt: pulumi.StringRef("2009-11-10T23:00:00Z"),
}, 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 exampleZeroTrustTunnelCloudflareds = Cloudflare.GetZeroTrustTunnelCloudflareds.Invoke(new()
{
AccountId = "699d98642c564d2e855e9661899b7252",
ExcludePrefix = "vpc1-",
ExistedAt = "2019-10-12T07%3A20%3A50.52Z",
IncludePrefix = "vpc1-",
IsDeleted = true,
Name = "blog",
Status = "inactive",
Uuid = "f70ff985-a4ef-4643-bbbc-4a0ed4fc8415",
WasActiveAt = "2009-11-10T23:00:00Z",
WasInactiveAt = "2009-11-10T23:00:00Z",
});
});
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.GetZeroTrustTunnelCloudflaredsArgs;
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 exampleZeroTrustTunnelCloudflareds = CloudflareFunctions.getZeroTrustTunnelCloudflareds(GetZeroTrustTunnelCloudflaredsArgs.builder()
.accountId("699d98642c564d2e855e9661899b7252")
.excludePrefix("vpc1-")
.existedAt("2019-10-12T07%3A20%3A50.52Z")
.includePrefix("vpc1-")
.isDeleted(true)
.name("blog")
.status("inactive")
.uuid("f70ff985-a4ef-4643-bbbc-4a0ed4fc8415")
.wasActiveAt("2009-11-10T23:00:00Z")
.wasInactiveAt("2009-11-10T23:00:00Z")
.build());
}
}
variables:
exampleZeroTrustTunnelCloudflareds:
fn::invoke:
function: cloudflare:getZeroTrustTunnelCloudflareds
arguments:
accountId: 699d98642c564d2e855e9661899b7252
excludePrefix: vpc1-
existedAt: 2019-10-12T07%3A20%3A50.52Z
includePrefix: vpc1-
isDeleted: true
name: blog
status: inactive
uuid: f70ff985-a4ef-4643-bbbc-4a0ed4fc8415
wasActiveAt: 2009-11-10T23:00:00Z
wasInactiveAt: 2009-11-10T23:00:00Z
Using getZeroTrustTunnelCloudflareds
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 getZeroTrustTunnelCloudflareds(args: GetZeroTrustTunnelCloudflaredsArgs, opts?: InvokeOptions): Promise<GetZeroTrustTunnelCloudflaredsResult>
function getZeroTrustTunnelCloudflaredsOutput(args: GetZeroTrustTunnelCloudflaredsOutputArgs, opts?: InvokeOptions): Output<GetZeroTrustTunnelCloudflaredsResult>
def get_zero_trust_tunnel_cloudflareds(account_id: Optional[str] = None,
exclude_prefix: Optional[str] = None,
existed_at: Optional[str] = None,
include_prefix: Optional[str] = None,
is_deleted: Optional[bool] = None,
max_items: Optional[int] = None,
name: Optional[str] = None,
status: Optional[str] = None,
uuid: Optional[str] = None,
was_active_at: Optional[str] = None,
was_inactive_at: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetZeroTrustTunnelCloudflaredsResult
def get_zero_trust_tunnel_cloudflareds_output(account_id: Optional[pulumi.Input[str]] = None,
exclude_prefix: Optional[pulumi.Input[str]] = None,
existed_at: Optional[pulumi.Input[str]] = None,
include_prefix: Optional[pulumi.Input[str]] = None,
is_deleted: Optional[pulumi.Input[bool]] = None,
max_items: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
uuid: Optional[pulumi.Input[str]] = None,
was_active_at: Optional[pulumi.Input[str]] = None,
was_inactive_at: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetZeroTrustTunnelCloudflaredsResult]
func LookupZeroTrustTunnelCloudflareds(ctx *Context, args *LookupZeroTrustTunnelCloudflaredsArgs, opts ...InvokeOption) (*LookupZeroTrustTunnelCloudflaredsResult, error)
func LookupZeroTrustTunnelCloudflaredsOutput(ctx *Context, args *LookupZeroTrustTunnelCloudflaredsOutputArgs, opts ...InvokeOption) LookupZeroTrustTunnelCloudflaredsResultOutput
> Note: This function is named LookupZeroTrustTunnelCloudflareds
in the Go SDK.
public static class GetZeroTrustTunnelCloudflareds
{
public static Task<GetZeroTrustTunnelCloudflaredsResult> InvokeAsync(GetZeroTrustTunnelCloudflaredsArgs args, InvokeOptions? opts = null)
public static Output<GetZeroTrustTunnelCloudflaredsResult> Invoke(GetZeroTrustTunnelCloudflaredsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetZeroTrustTunnelCloudflaredsResult> getZeroTrustTunnelCloudflareds(GetZeroTrustTunnelCloudflaredsArgs args, InvokeOptions options)
public static Output<GetZeroTrustTunnelCloudflaredsResult> getZeroTrustTunnelCloudflareds(GetZeroTrustTunnelCloudflaredsArgs args, InvokeOptions options)
fn::invoke:
function: cloudflare:index/getZeroTrustTunnelCloudflareds:getZeroTrustTunnelCloudflareds
arguments:
# arguments dictionary
The following arguments are supported:
- Account
Id This property is required. string - Cloudflare account ID
- Exclude
Prefix string - Existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- Include
Prefix string - Is
Deleted bool - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - Max
Items int - Max items to fetch, default: 1000
- 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.
- Was
Active stringAt - Was
Inactive stringAt
- Account
Id This property is required. string - Cloudflare account ID
- Exclude
Prefix string - Existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- Include
Prefix string - Is
Deleted bool - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - Max
Items int - Max items to fetch, default: 1000
- 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.
- Was
Active stringAt - Was
Inactive stringAt
- account
Id This property is required. String - Cloudflare account ID
- exclude
Prefix String - existed
At String - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix String - is
Deleted Boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items Integer - Max items to fetch, default: 1000
- 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.
- was
Active StringAt - was
Inactive StringAt
- account
Id This property is required. string - Cloudflare account ID
- exclude
Prefix string - existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix string - is
Deleted boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items number - Max items to fetch, default: 1000
- 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.
- was
Active stringAt - was
Inactive stringAt
- account_
id This property is required. str - Cloudflare account ID
- 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. - max_
items int - Max items to fetch, default: 1000
- 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
- account
Id This property is required. String - Cloudflare account ID
- exclude
Prefix String - existed
At String - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix String - is
Deleted Boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items Number - Max items to fetch, default: 1000
- 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.
- was
Active StringAt - was
Inactive StringAt
getZeroTrustTunnelCloudflareds Result
The following output properties are available:
- Account
Id string - Cloudflare account ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
List<Get
Zero Trust Tunnel Cloudflareds Result> - The items returned by the data source
- Exclude
Prefix string - Existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- Include
Prefix string - Is
Deleted bool - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - Max
Items int - Max items to fetch, default: 1000
- 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.
- Was
Active stringAt - Was
Inactive stringAt
- Account
Id string - Cloudflare account ID
- Id string
- The provider-assigned unique ID for this managed resource.
- Results
[]Get
Zero Trust Tunnel Cloudflareds Result - The items returned by the data source
- Exclude
Prefix string - Existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- Include
Prefix string - Is
Deleted bool - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - Max
Items int - Max items to fetch, default: 1000
- 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.
- Was
Active stringAt - Was
Inactive stringAt
- account
Id String - Cloudflare account ID
- id String
- The provider-assigned unique ID for this managed resource.
- results
List<Get
Zero Trust Tunnel Cloudflareds Result> - The items returned by the data source
- exclude
Prefix String - existed
At String - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix String - is
Deleted Boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items Integer - Max items to fetch, default: 1000
- 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.
- was
Active StringAt - was
Inactive StringAt
- account
Id string - Cloudflare account ID
- id string
- The provider-assigned unique ID for this managed resource.
- results
Get
Zero Trust Tunnel Cloudflareds Result[] - The items returned by the data source
- exclude
Prefix string - existed
At string - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix string - is
Deleted boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items number - Max items to fetch, default: 1000
- 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.
- was
Active stringAt - was
Inactive stringAt
- account_
id str - Cloudflare account ID
- id str
- The provider-assigned unique ID for this managed resource.
- results
Sequence[Get
Zero Trust Tunnel Cloudflareds Result] - The items returned by the data source
- 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. - max_
items int - Max items to fetch, default: 1000
- 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
- account
Id String - Cloudflare account ID
- id String
- The provider-assigned unique ID for this managed resource.
- results List<Property Map>
- The items returned by the data source
- exclude
Prefix String - existed
At String - If provided, include only resources that were created (and not deleted) before this time. URL encoded.
- include
Prefix String - is
Deleted Boolean - If
true
, only include deleted tunnels. Iffalse
, exclude deleted tunnels. If empty, all tunnels will be included. - max
Items Number - Max items to fetch, default: 1000
- 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.
- was
Active StringAt - was
Inactive StringAt
Supporting Types
GetZeroTrustTunnelCloudflaredsResult
- Account
Tag This property is required. string - Cloudflare account ID
- Connections
This property is required. List<GetZero Trust Tunnel Cloudflareds Result Connection> - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- Conns
Active At This property is required. string - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - Conns
Inactive At This property is required. string - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - Created
At This property is required. string - Timestamp of when the resource was created.
- Deleted
At This property is required. string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - Id
This property is required. string - UUID of the tunnel.
- Metadata
This property is required. string - Metadata associated with the tunnel.
- Name
This property is required. string - A user-friendly name for a tunnel.
- Remote
Config This property is required. 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
This property is required. 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". - Tun
Type This property is required. string - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
- Account
Tag This property is required. string - Cloudflare account ID
- Connections
This property is required. []GetZero Trust Tunnel Cloudflareds Result Connection - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- Conns
Active At This property is required. string - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - Conns
Inactive At This property is required. string - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - Created
At This property is required. string - Timestamp of when the resource was created.
- Deleted
At This property is required. string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - Id
This property is required. string - UUID of the tunnel.
- Metadata
This property is required. string - Metadata associated with the tunnel.
- Name
This property is required. string - A user-friendly name for a tunnel.
- Remote
Config This property is required. 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
This property is required. 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". - Tun
Type This property is required. string - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
- account
Tag This property is required. String - Cloudflare account ID
- connections
This property is required. List<GetZero Trust Tunnel Cloudflareds Result Connection> - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- conns
Active At This property is required. String - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - conns
Inactive At This property is required. String - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - created
At This property is required. String - Timestamp of when the resource was created.
- deleted
At This property is required. String - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id
This property is required. String - UUID of the tunnel.
- metadata
This property is required. String - Metadata associated with the tunnel.
- name
This property is required. String - A user-friendly name for a tunnel.
- remote
Config This property is required. 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
This property is required. 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". - tun
Type This property is required. String - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
- account
Tag This property is required. string - Cloudflare account ID
- connections
This property is required. GetZero Trust Tunnel Cloudflareds Result Connection[] - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- conns
Active At This property is required. string - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - conns
Inactive At This property is required. string - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - created
At This property is required. string - Timestamp of when the resource was created.
- deleted
At This property is required. string - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id
This property is required. string - UUID of the tunnel.
- metadata
This property is required. string - Metadata associated with the tunnel.
- name
This property is required. string - A user-friendly name for a tunnel.
- remote
Config This property is required. 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
This property is required. 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". - tun
Type This property is required. string - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
- account_
tag This property is required. str - Cloudflare account ID
- connections
This property is required. Sequence[GetZero Trust Tunnel Cloudflareds Result Connection] - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- conns_
active_ at This property is required. str - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - conns_
inactive_ at This property is required. str - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - created_
at This property is required. str - Timestamp of when the resource was created.
- deleted_
at This property is required. str - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id
This property is required. str - UUID of the tunnel.
- metadata
This property is required. str - Metadata associated with the tunnel.
- name
This property is required. str - A user-friendly name for a tunnel.
- remote_
config This property is required. 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
This property is required. 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 This property is required. str - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
- account
Tag This property is required. String - Cloudflare account ID
- connections
This property is required. List<Property Map> - The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
- conns
Active At This property is required. String - Timestamp of when the tunnel established at least one connection to Cloudflare's edge. If
null
, the tunnel is inactive. - conns
Inactive At This property is required. String - Timestamp of when the tunnel became inactive (no connections to Cloudflare's edge). If
null
, the tunnel is active. - created
At This property is required. String - Timestamp of when the resource was created.
- deleted
At This property is required. String - Timestamp of when the resource was deleted. If
null
, the resource has not been deleted. - id
This property is required. String - UUID of the tunnel.
- metadata
This property is required. String - Metadata associated with the tunnel.
- name
This property is required. String - A user-friendly name for a tunnel.
- remote
Config This property is required. 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
This property is required. 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". - tun
Type This property is required. String - The type of tunnel. Available values: "cfdtunnel", "warpconnector", "warp", "magic", "ip_sec", "gre", "cni".
GetZeroTrustTunnelCloudflaredsResultConnection
- Client
Id This property is required. string - UUID of the Cloudflare Tunnel connector.
- Client
Version This property is required. string - The cloudflared version used to establish this connection.
- Colo
Name This property is required. string - The Cloudflare data center used for this connection.
- Id
This property is required. string - UUID of the Cloudflare Tunnel connection.
- Is
Pending Reconnect This property is required. bool - 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 This property is required. string - Timestamp of when the connection was established.
- Origin
Ip This property is required. string - The public IP address of the host running cloudflared.
- Uuid
This property is required. string - UUID of the Cloudflare Tunnel connection.
- Client
Id This property is required. string - UUID of the Cloudflare Tunnel connector.
- Client
Version This property is required. string - The cloudflared version used to establish this connection.
- Colo
Name This property is required. string - The Cloudflare data center used for this connection.
- Id
This property is required. string - UUID of the Cloudflare Tunnel connection.
- Is
Pending Reconnect This property is required. bool - 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 This property is required. string - Timestamp of when the connection was established.
- Origin
Ip This property is required. string - The public IP address of the host running cloudflared.
- Uuid
This property is required. string - UUID of the Cloudflare Tunnel connection.
- client
Id This property is required. String - UUID of the Cloudflare Tunnel connector.
- client
Version This property is required. String - The cloudflared version used to establish this connection.
- colo
Name This property is required. String - The Cloudflare data center used for this connection.
- id
This property is required. String - UUID of the Cloudflare Tunnel connection.
- is
Pending Reconnect This property is required. Boolean - 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 This property is required. String - Timestamp of when the connection was established.
- origin
Ip This property is required. String - The public IP address of the host running cloudflared.
- uuid
This property is required. String - UUID of the Cloudflare Tunnel connection.
- client
Id This property is required. string - UUID of the Cloudflare Tunnel connector.
- client
Version This property is required. string - The cloudflared version used to establish this connection.
- colo
Name This property is required. string - The Cloudflare data center used for this connection.
- id
This property is required. string - UUID of the Cloudflare Tunnel connection.
- is
Pending Reconnect This property is required. boolean - 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 This property is required. string - Timestamp of when the connection was established.
- origin
Ip This property is required. string - The public IP address of the host running cloudflared.
- uuid
This property is required. string - UUID of the Cloudflare Tunnel connection.
- client_
id This property is required. str - UUID of the Cloudflare Tunnel connector.
- client_
version This property is required. str - The cloudflared version used to establish this connection.
- colo_
name This property is required. str - The Cloudflare data center used for this connection.
- id
This property is required. str - UUID of the Cloudflare Tunnel connection.
- is_
pending_ reconnect This property is required. bool - 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 This property is required. str - Timestamp of when the connection was established.
- origin_
ip This property is required. str - The public IP address of the host running cloudflared.
- uuid
This property is required. str - UUID of the Cloudflare Tunnel connection.
- client
Id This property is required. String - UUID of the Cloudflare Tunnel connector.
- client
Version This property is required. String - The cloudflared version used to establish this connection.
- colo
Name This property is required. String - The Cloudflare data center used for this connection.
- id
This property is required. String - UUID of the Cloudflare Tunnel connection.
- is
Pending Reconnect This property is required. Boolean - 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 This property is required. String - Timestamp of when the connection was established.
- origin
Ip This property is required. String - The public IP address of the host running cloudflared.
- uuid
This property is required. String - UUID of the Cloudflare Tunnel connection.
Package Details
- Repository
- Cloudflare pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflare
Terraform Provider.