autonomy cert list

List and inspect TLS certificate files

Synopsis

Inspect one or more TLS certificate PEM files.

Prints identity (Subject CN), file path, expiry date, days remaining, and status (ok / expiring / expired) for each certificate.

Use –expiring-within-days to filter to certificates approaching expiry. Use ‘autonomy cert rotate’ to renew expiring certificates.

Required RBAC permission: cert:read or cert:manage. Set AUTONOMY_RBAC_ENFORCEMENT=0 to disable enforcement (not recommended in production).

Usage

autonomy cert list [flags]

Examples

# Inspect a single certificate
  autonomy cert list --cert-file /etc/edge/certs/node.crt

  # Inspect multiple certs
  autonomy cert list \
    --cert-file /etc/edge/certs/node.crt \
    --cert-file /etc/edge/certs/relay.crt

  # Show only certs expiring within 30 days
  autonomy cert list \
    --cert-file /etc/edge/certs/node.crt \
    --expiring-within-days 30

Options

      --cert-file stringArray      certificate PEM file to inspect (may be repeated; required)
      --expiring-within-days int   only show certs expiring within N days (0 = show all)

See also

  • autonomy cert — Manage TLS leaf certificates for edge node identity