Skip to main content

authenticator_device_aaguids

Creates, updates, deletes, gets or lists an authenticator_device_aaguids resource.

Overview

Nameauthenticator_device_aaguids
TypeResource
Idcloudflare.zero_trust.authenticator_device_aaguids

Fields

The following fields are returned by SELECT queries:

List authenticator device AAGUIDs response

NameDatatypeDescription
namestringThe human-readable name of the FIDO2 authenticator (example: YubiKey 5 NFC)
aaguidstring (uuid)The Authenticator Attestation GUID (AAGUID) uniquely identifying a FIDO2 authenticator model (example: 2fc0579f-8113-47ea-b116-bb5a8db9202a)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_idReturns a list of Authenticator Device AAGUIDs for MFA configuration.

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

Returns a list of Authenticator Device AAGUIDs for MFA configuration.

SELECT
name,
aaguid
FROM cloudflare.zero_trust.authenticator_device_aaguids
WHERE account_id = '{{ account_id }}' -- required
;