Skip to main content

cas_e335ab

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

Overview

Namecas_e335ab
TypeResource
Idcloudflare.zero_trust.cas_e335ab

Fields

The following fields are returned by SELECT queries:

Get a short-lived certificate CA 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_accountselectapp_id, account_idFetches a short-lived certificate CA and its public key.

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.
app_idstringThe Access application ID.

SELECT examples

Fetches a short-lived certificate CA and its public key.

SELECT
id,
aud,
public_key
FROM cloudflare.zero_trust.cas_e335ab
WHERE app_id = '{{ app_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;