Table: vault_pki_cert
For querying PKI Certificates in the pki engines
Examples
Get all certificates in all pki mounts
select *from vault_pki_cert;
Get certificates from a specific engine mount (example is pki/
)
select *from vault_pki_certwhere path = 'pki/';
Get renewable certificates from the pki/
mount
select *from vault_pki_certwhere path = 'pki/' and renewable = 1;
Schema for vault_pki_cert
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form, e.g. connection_name. | |
lease_duration | bigint | Duration of Lease in seconds (0 [infinite] if not set) | |
lease_id | text | Lease Identifier | |
path | text | The path (mount point) of the engine containing the PKI certificate | |
renewable | boolean | Indication if the certificate is renewable | |
request_id | text | Request Identifier | |
serial | text | The serial identifier of the certificate |