vercel certs
Learn how to manage certificates for your domains using the vercel certs CLI command.Table of Contents
The vercel certs
command is used to manage certificates for domains, providing functionality to list, issue, and remove them. Vercel manages certificates for domains automatically.
terminal
vercel certs ls
terminal
vercel certs issue [domain1, domain2, domain3]
terminal
vercel certs rm [certificate-id]
These are options that only apply to the vercel certs
command.
The --challenge-only
option can be used to only show the challenges needed to issue a certificate.
terminal
vercel certs issue foo.com --challenge-only
The --limit
option can be used to specify the maximum number of certs returned when using ls
. The default value is 20
and the maximum is 100
.
terminal
vercel certs ls --limit 100
The following global options can be passed when using the vercel certs
command:
For more information on global options and their usage, refer to the options section.
Last updated on July 17, 2024
Was this helpful?