includes_11848d
Creates, updates, deletes, gets or lists an includes_11848d resource.
Overview
| Name | includes_11848d |
| Type | Resource |
| Id | cloudflare.zero_trust.includes_11848d |
Fields
The following fields are returned by SELECT queries:
- list_by_account
Get the Split Tunnel include list for a device settings profile response.
| Name | Datatype | Description |
|---|---|---|
address | string | The 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) |
description | string | A description of the Split Tunnel item, displayed in the client UI. (example: Include testing domains in the tunnel, x-stainless-terraform-configurability: computed_optional) |
host | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_account | select | policy_id, account_id | Fetches the list of routes included in 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
policy_id | string | The Access policy ID. |
SELECT examples
- list_by_account
Fetches the list of routes included in the WARP client's tunnel for a specific device settings profile.
SELECT
address,
description,
host
FROM cloudflare.zero_trust.includes_11848d
WHERE policy_id = '{{ policy_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;