Skip to main content

connectivity_settings

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

Overview

Nameconnectivity_settings
TypeResource
Idcloudflare.zero_trust.connectivity_settings

Fields

The following fields are returned by SELECT queries:

Get Zero Trust Connectivity Settings response

NameDatatypeDescription
icmp_proxy_enabledbooleanA flag to enable the ICMP proxy for the account network.
offramp_warp_enabledbooleanA flag to enable WARP to WARP traffic.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idGets the Zero Trust Connectivity Settings for the given account.
editupdateaccount_idUpdates the Zero Trust Connectivity Settings for the given account.

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

Gets the Zero Trust Connectivity Settings for the given account.

SELECT
icmp_proxy_enabled,
offramp_warp_enabled
FROM cloudflare.zero_trust.connectivity_settings
WHERE account_id = '{{ account_id }}' -- required
;

UPDATE examples

Updates the Zero Trust Connectivity Settings for the given account.

UPDATE cloudflare.zero_trust.connectivity_settings
SET
icmp_proxy_enabled = {{ icmp_proxy_enabled }},
offramp_warp_enabled = {{ offramp_warp_enabled }}
WHERE
account_id = '{{ account_id }}' --required
RETURNING
errors,
messages,
result,
success;