diff --git a/docs/Configuration/yaml-files.md b/docs/Configuration/yaml-files.md index 03760138ff9a..45294a04a4bb 100644 --- a/docs/Configuration/yaml-files.md +++ b/docs/Configuration/yaml-files.md @@ -613,7 +613,8 @@ org_settings: api_token: $DIGICERT_API_TOKEN profile_id: 926dbcdd-41c4-4fe5-96c3-b6a7f0da81d8 certificate_common_name: $FLEET_VAR_HOST_HARDWARE_SERIAL@example.com - certificate_subject_alternative_name: $FLEET_VAR_HOST_HARDWARE_SERIAL@example.com + certificate_user_principal_names: + - $FLEET_VAR_HOST_HARDWARE_SERIAL@example.com certificate_seat_id: $FLEET_VAR_HOST_HARDWARE_SERIAL@example.com ndes_scep_proxy: url: https://example.com/certsrv/mscep/mscep.dll @@ -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 diff --git a/docs/REST API/rest-api.md b/docs/REST API/rest-api.md index 240651502283..f03529f7576b 100644 --- a/docs/REST API/rest-api.md +++ b/docs/REST API/rest-api.md @@ -996,7 +996,9 @@ None. "api_token": "********", "profile_id": "7ed77396-9186-4bfa-9fa7-63dddc46b8a3", "certificate_common_name": "$FLEET_VAR_HOST_HARDWARE_SERIAL@example.com", - "certificate_subject_alternative_name": "$FLEET_VAR_HOST_HARDWARE_SERIAL@example.com", + "certificate_user_principal_names": [ + "$FLEET_VAR_HOST_HARDWARE_SERIAL@example.com", + ] "certificate_seat_id": "$FLEET_VAR_HOST_HARDWARE_SERIAL@example.com" } ], @@ -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. | -
> 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.