Skip to main content

warp_connector_connections

Creates, updates, deletes, gets or lists a warp_connector_connections resource.

Overview

Namewarp_connector_connections
TypeResource
Idcloudflare.zero_trust.warp_connector_connections

Fields

The following fields are returned by SELECT queries:

List WARP Connector Tunnel connections response

NameDatatypeDescription
idstring (uuid)UUID of the Cloudflare Tunnel connector. (example: 1bedc50d-42b3-473c-b108-ff3d10c0d925)
archstringThe cloudflared OS architecture used to establish this connection. (example: linux_amd64)
connsarrayThe WARP Connector Tunnel connections between your origin and Cloudflare's edge.
featuresarrayFeatures enabled for the Cloudflare Tunnel.
ha_statusstringThe HA status of a WARP Connector client. (offline, passive, active)
run_atstring (date-time)Timestamp of when the tunnel connection was started. (example: 2009-11-10T23:00:00Z)
versionstringThe cloudflared version used to establish this connection. (example: 2022.7.1)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, tunnel_idFetches connection details for a WARP Connector Tunnel.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
tunnel_idstringThe Cloudflare Tunnel ID.

SELECT examples

Fetches connection details for a WARP Connector Tunnel.

SELECT
id,
arch,
conns,
features,
ha_status,
run_at,
version
FROM cloudflare.zero_trust.warp_connector_connections
WHERE account_id = '{{ account_id }}' -- required
AND tunnel_id = '{{ tunnel_id }}' -- required
;