Skip to main content

includes_73882e

Creates, updates, deletes, gets or lists an includes_73882e resource.

Overview

Nameincludes_73882e
TypeResource
Idcloudflare.zero_trust.includes_73882e

Fields

The following fields are returned by SELECT queries:

Get the Split Tunnel include list response.

NameDatatypeDescription
addressstringThe address in CIDR format to include in the tunnel. If address is present, host must not be present. (example: 192.0.2.0/24, x-stainless-terraform-configurability: computed_optional)
descriptionstringA description of the Split Tunnel item, displayed in the client UI. (example: Include testing domains in the tunnel, x-stainless-terraform-configurability: computed_optional)
hoststringThe domain name to include in the tunnel. If host is present, address must not be present. (example: *.example.com, x-stainless-terraform-configurability: computed_optional)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_accountselectaccount_idFetches the list of routes included in the WARP client's 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.

SELECT examples

Fetches the list of routes included in the WARP client's tunnel.

SELECT
address,
description,
host
FROM cloudflare.zero_trust.includes_73882e
WHERE account_id = '{{ account_id }}' -- required
;