Skip to main content

fallback_domains_97f458

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

Overview

Namefallback_domains_97f458
TypeResource
Idcloudflare.zero_trust.fallback_domains_97f458

Fields

The following fields are returned by SELECT queries:

Get the Local Domain Fallback list for a device settings profile response.

NameDatatypeDescription
descriptionstringA description of the fallback domain, displayed in the client UI. (example: Domain bypass for local development)
dns_serverarrayA list of IP addresses to handle domain resolution.
suffixstringThe domain suffix to match when resolving locally. (example: example.com)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_accountselectpolicy_id, account_idFetches the list of domains to bypass Gateway DNS resolution from a specified device settings profile. These domains will use the specified local DNS resolver instead.

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 domains to bypass Gateway DNS resolution from a specified device settings profile. These domains will use the specified local DNS resolver instead.

SELECT
description,
dns_server,
suffix
FROM cloudflare.zero_trust.fallback_domains_97f458
WHERE policy_id = '{{ policy_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;