Skip to main content

certificates_settings

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

Overview

Namecertificates_settings
TypeResource
Idcloudflare.zero_trust.certificates_settings

Fields

The following fields are returned by SELECT queries:

List mTLS hostname settings response

NameDatatypeDescription
china_networkbooleanRequest client certificates for this hostname in China. Can only be set to true if this zone is china network enabled.
client_certificate_forwardingbooleanClient Certificate Forwarding is a feature that takes the client cert provided by the eyeball to the edge, and forwards it to the origin as a HTTP header to allow logging on the origin.
hostnamestringThe hostname that these settings apply to. (example: admin.example.com)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idList all mTLS hostname settings for this account or zone.

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

List all mTLS hostname settings for this account or zone.

SELECT
china_network,
client_certificate_forwarding,
hostname
FROM cloudflare.zero_trust.certificates_settings
WHERE account_id = '{{ account_id }}' -- required
;