From 8fa5aafa9df608713c15475dec20f8efac273cba Mon Sep 17 00:00:00 2001 From: Rachael Shaw Date: Wed, 23 Oct 2024 10:50:08 -0500 Subject: [PATCH] Update configuration docs (#22990) Move `license.enforce_host_limit` to contributor docs --- .../fleet-server-configuration.md | 20 ------------------- .../Configuration-for-contributors.md | 20 +++++++++++++++++++ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/Configuration/fleet-server-configuration.md b/docs/Configuration/fleet-server-configuration.md index 89fa9072ee..c64dc6f97d 100644 --- a/docs/Configuration/fleet-server-configuration.md +++ b/docs/Configuration/fleet-server-configuration.md @@ -757,26 +757,6 @@ The license key provided to Fleet customers which provides access to Fleet Premi key: foobar ``` -##### license_enforce_host_limit - -Whether Fleet should enforce the host limit of the license, if true, attempting to enroll new hosts when the limit is reached will fail. - -- Default value: `false` -- Environment variable: `FLEET_LICENSE_ENFORCE_HOST_LIMIT` -- Config file format: - ```yaml - license: - enforce_host_limit: true - ``` - -##### Example YAML - -```yaml -license: - key: foobar - enforce_host_limit: false -``` - #### Session ##### session_key_size diff --git a/docs/Contributing/Configuration-for-contributors.md b/docs/Contributing/Configuration-for-contributors.md index 7e3c6798ce..ce3dc4e574 100644 --- a/docs/Contributing/Configuration-for-contributors.md +++ b/docs/Contributing/Configuration-for-contributors.md @@ -156,6 +156,26 @@ This is the content of the PEM-encoded private key for the Apple Business Manage -----END RSA PRIVATE KEY----- ``` +##### license.enforce_host_limit + +Whether Fleet should enforce the host limit of the license, if true, attempting to enroll new hosts when the limit is reached will fail. + +- Default value: `false` +- Environment variable: `FLEET_LICENSE_ENFORCE_HOST_LIMIT` +- Config file format: + ```yaml + license: + enforce_host_limit: true + ``` + +##### Example YAML + +```yaml +license: + key: foobar + enforce_host_limit: false +``` + ## Environment variables ### FLEET_ENABLE_POST_CLIENT_DEBUG_ERRORS