Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[API/YAML updates] Deploy certificates from DigiCert and custom SCEP #26802

Open
wants to merge 2 commits into
base: docs-v4.66.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/Configuration/yaml-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,8 @@ org_settings:
api_token: $DIGICERT_API_TOKEN
profile_id: 926dbcdd-41c4-4fe5-96c3-b6a7f0da81d8
certificate_common_name: [email protected]
certificate_subject_alternative_name: [email protected]
certificate_user_principal_names:
- [email protected]
certificate_seat_id: [email protected]
ndes_scep_proxy:
url: https://example.com/certsrv/mscep/mscep.dll
Expand Down Expand Up @@ -653,7 +654,7 @@ For secrets, you can add [GitHub environment variables](https://docs.github.com/
- `api_token` is the token used to authenticate requests to DigiCert.
- `profile_id` is the ID of certificate profile in DigiCert.
- `certificate_common_name` is the certificate's CN.
- `certificate_subject_alternative_name` is the certificate's SAN name.
- `certificate_user_principal_names` is the certificate's user principal names (UPN) attribute in Subject Alternative Name (SAN).
- `certificate_seat_id` is the ID of the DigiCert's seat. Seats are license units in DigiCert.

#### ndes_scep_proxy
Expand Down
7 changes: 4 additions & 3 deletions docs/REST API/rest-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,9 @@ None.
"api_token": "********",
"profile_id": "7ed77396-9186-4bfa-9fa7-63dddc46b8a3",
"certificate_common_name": "[email protected]",
"certificate_subject_alternative_name": "[email protected]",
"certificate_user_principal_names": [
"[email protected]",
]
"certificate_seat_id": "[email protected]"
}
],
Expand Down Expand Up @@ -1675,10 +1677,9 @@ _Available in Fleet Premium._
| api_token | string | API token used to authenticate requests to DigiCert. |
| profile_id | string | The ID of certificate profile in DigiCert. |
| certificate_common_name | string | The certificate's common name. |
| certificate_subject_alternative_name | string | The certificate's SAN name. |
| certificate_user_principal_names | array | The certificate's user principal names (UPN) attribute in Subject Alternative Name (SAN). |
| certificate_seat_id | string | The ID of the DigiCert seat. Seats are license units in DigiCert. |


<br/>

> Note that when making changes to the `integrations.digicert` array, all integrations must be provided (not just the one being modified). This is because the endpoint will consider missing integrations as deleted.
Expand Down
Loading