warp_connector_connections
Creates, updates, deletes, gets or lists a warp_connector_connections resource.
Overview
| Name | warp_connector_connections |
| Type | Resource |
| Id | cloudflare.zero_trust.warp_connector_connections |
Fields
The following fields are returned by SELECT queries:
- list
List WARP Connector Tunnel connections response
| Name | Datatype | Description |
|---|---|---|
id | string (uuid) | UUID of the Cloudflare Tunnel connector. (example: 1bedc50d-42b3-473c-b108-ff3d10c0d925) |
arch | string | The cloudflared OS architecture used to establish this connection. (example: linux_amd64) |
conns | array | The WARP Connector Tunnel connections between your origin and Cloudflare's edge. |
features | array | Features enabled for the Cloudflare Tunnel. |
ha_status | string | The HA status of a WARP Connector client. (offline, passive, active) |
run_at | string (date-time) | Timestamp of when the tunnel connection was started. (example: 2009-11-10T23:00:00Z) |
version | string | The cloudflared version used to establish this connection. (example: 2022.7.1) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, tunnel_id | Fetches 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
tunnel_id | string | The Cloudflare Tunnel ID. |
SELECT examples
- list
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
;