Certificates
Sign SSH Public Key
Overview
- Introduction
- Authentication
- Examples
Endpoints
- Identities
- Token Auth
- Universal Auth
- GCP Auth
- AWS Auth
- Azure Auth
- Kubernetes Auth
- OIDC Auth
- JWT Auth
- Groups
- Organizations
- Projects
- Project Users
- Project Groups
- Project Identities
- Project Roles
- Project Templates
- Environments
- Folders
- Secret Tags
- Secrets
- Dynamic Secrets
- Secret Imports
- Secret Rotations
- Identity Specific Privilege
- App Connections
- Secret Syncs
- Integrations
- Service Tokens
- Audit Logs
Infisical PKI
- Certificate Authorities
- Certificates
- Certificate Templates
- Certificate Collections
- PKI Alerting
Infisical SSH
- Hosts
- Host Groups
- Certificates
- Certificate Authorities
- Certificate Templates
Infisical KMS
- Keys
- Encryption
- Signing
Certificates
Sign SSH Public Key
Sign SSH public key
POST
/
api
/
v1
/
ssh
/
certificates
/
sign
curl --request POST \
--url https://us.infisical.com/api/v1/ssh/certificates/sign \
--header 'Content-Type: application/json' \
--data '{
"certificateTemplateId": "<string>",
"publicKey": "<string>",
"certType": "user",
"principals": [
"<string>"
],
"ttl": "<string>",
"keyId": "<string>"
}'
{
"serialNumber": "<string>",
"signedKey": "<string>"
}
Body
application/json
Response
200
application/json
Default Response
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://us.infisical.com/api/v1/ssh/certificates/sign \
--header 'Content-Type: application/json' \
--data '{
"certificateTemplateId": "<string>",
"publicKey": "<string>",
"certType": "user",
"principals": [
"<string>"
],
"ttl": "<string>",
"keyId": "<string>"
}'
{
"serialNumber": "<string>",
"signedKey": "<string>"
}