signing_certificates
Creates, updates, deletes, gets or lists a signing_certificates resource.
Overview
| Name | signing_certificates |
| Type | Resource |
| Id | azure.security_attestation.signing_certificates |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
keys | array | Array of JWK values. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | endpoint | Retrieves the attestation signing keys in use by the attestation service. Retrieves metadata signing certificates in use by the attestation service. |
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 |
|---|---|---|
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client endpoint parameter. (default: ) |
SELECT examples
- get
Retrieves the attestation signing keys in use by the attestation service. Retrieves metadata signing certificates in use by the attestation service.
SELECT
keys
FROM azure.security_attestation.signing_certificates
WHERE endpoint = '{{ endpoint }}' -- required
;