authenticator_device_aaguids
Creates, updates, deletes, gets or lists an authenticator_device_aaguids resource.
Overview
| Name | authenticator_device_aaguids |
| Type | Resource |
| Id | cloudflare.zero_trust.authenticator_device_aaguids |
Fields
The following fields are returned by SELECT queries:
- list
List authenticator device AAGUIDs response
| Name | Datatype | Description |
|---|---|---|
name | string | The human-readable name of the FIDO2 authenticator (example: YubiKey 5 NFC) |
aaguid | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id | Returns 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
SELECT examples
- list
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
;