Skip to main content

excludes_26edfa

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

Overview

Nameexcludes_26edfa
TypeResource
Idcloudflare.zero_trust.excludes_26edfa

Fields

The following fields are returned by SELECT queries:

Get the Split Tunnel exclude list for a device settings profile response.

NameDatatypeDescription
addressstringThe address in CIDR format to exclude from 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: Exclude testing domains from the tunnel, x-stainless-terraform-configurability: computed_optional)
hoststringThe domain name to exclude from 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_accountselectpolicy_id, account_idFetches the list of routes excluded from the WARP client's tunnel for a specific device settings profile.

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.
policy_idstringThe Access policy ID.

SELECT examples

Fetches the list of routes excluded from the WARP client's tunnel for a specific device settings profile.

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