Skip to main content

cas_c5c46c

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

Overview

Namecas_c5c46c
TypeResource
Idcloudflare.zero_trust.cas_c5c46c

Fields

The following fields are returned by SELECT queries:

List short-lived certificate CAs response

NameDatatypeDescription
idstringThe ID of the CA. (example: 7eddae4619b50ab1361ba8ae9bd72269a432fea041529ed9)
audstringThe Application Audience (AUD) tag. Identifies the application associated with the CA. (example: 737646a56ab1df6ec9bddc7e5ca84eaf3b0768850f3ffb5d74f1534911fe3893)
public_keystringThe public key to add to your SSH server configuration. (example: ecdsa-sha2-nistp256 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxx/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx= open-ssh-ca@cloudflareaccess.org)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_zoneselectzone_idpage, per_pageLists short-lived certificate CAs and their public keys.

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
zone_idstringThe Cloudflare zone ID.
pageinteger
per_pageinteger

SELECT examples

Lists short-lived certificate CAs and their public keys.

SELECT
id,
aud,
public_key
FROM cloudflare.zero_trust.cas_c5c46c
WHERE zone_id = '{{ zone_id }}' -- required
AND page = '{{ page }}'
AND per_page = '{{ per_page }}'
;