mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
Merge pull request #3583 from Infisical/feat/acme-and-external-ca
feat: acme and external CA for PKI
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Create"
|
||||
openapi: "POST /api/v1/pki/ca/acme"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Delete"
|
||||
openapi: "DELETE /api/v1/pki/ca/acme/{caName}"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "List"
|
||||
openapi: "GET /api/v1/pki/ca/acme"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Read"
|
||||
openapi: "GET /api/v1/pki/ca/acme/{caName}"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Update"
|
||||
openapi: "PATCH /api/v1/pki/ca/acme/{caName}"
|
||||
---
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
title: "Create"
|
||||
title: "Create (Deprecated)"
|
||||
openapi: "POST /api/v1/pki/ca"
|
||||
---
|
||||
|
||||
<Note>
|
||||
This endpoint is deprecated. Please use the internal CA endpoint [here](/api-reference/endpoints/certificate-authorities/internal/create).
|
||||
</Note>
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
title: "Delete"
|
||||
title: "Delete (Deprecated)"
|
||||
openapi: "DELETE /api/v1/pki/ca/{caId}"
|
||||
---
|
||||
|
||||
<Note>
|
||||
This endpoint is deprecated. Please use the internal CA endpoint [here](/api-reference/endpoints/certificate-authorities/internal/delete).
|
||||
</Note>
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Create"
|
||||
openapi: "POST /api/v1/pki/ca/internal"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Delete"
|
||||
openapi: "DELETE /api/v1/pki/ca/internal/{caName}"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "List"
|
||||
openapi: "GET /api/v1/pki/ca/internal"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Read"
|
||||
openapi: "GET /api/v1/pki/ca/internal/{caName}"
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Update"
|
||||
openapi: "PATCH /api/v1/pki/ca/internal/{caName}"
|
||||
---
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
title: "List"
|
||||
title: "List (Deprecated)"
|
||||
openapi: "GET /api/v2/workspace/{slug}/cas"
|
||||
---
|
||||
|
||||
<Note>
|
||||
This endpoint is deprecated. Please use the internal CA endpoint [here](/api-reference/endpoints/certificate-authorities/internal/list).
|
||||
</Note>
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
title: "Retrieve"
|
||||
title: "Retrieve (Deprecated)"
|
||||
openapi: "GET /api/v1/pki/ca/{caId}"
|
||||
---
|
||||
|
||||
<Note>
|
||||
This endpoint is deprecated. Please use the internal CA endpoint [here](/api-reference/endpoints/certificate-authorities/internal/read).
|
||||
</Note>
|
||||
@@ -1,4 +1,8 @@
|
||||
---
|
||||
title: "Update"
|
||||
title: "Update (Deprecated)"
|
||||
openapi: "PATCH /api/v1/pki/ca/{caId}"
|
||||
---
|
||||
|
||||
<Note>
|
||||
This endpoint is deprecated. Please use the internal CA endpoint [here](/api-reference/endpoints/certificate-authorities/internal/update).
|
||||
</Note>
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Retrieve latest certificate bundle"
|
||||
openapi: "GET /api/v1/pki/subscribers/{subscriberName}/latest-certificate-bundle"
|
||||
---
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
title: "Issue Certificate"
|
||||
openapi: "POST /api/v1/pki/subscribers/{subscriberName}/issue-cert"
|
||||
openapi: "POST /api/v1/pki/subscribers/{subscriberName}/issue-certificate"
|
||||
---
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: "Order Certificate"
|
||||
openapi: "POST /api/v1/pki/subscribers/{subscriberName}/order-certificate"
|
||||
---
|
||||
Reference in New Issue
Block a user