From 40b7ab86937f0b37c18b0b9085a5246af14c63ad Mon Sep 17 00:00:00 2001 From: Matty Courtney Date: Mon, 26 Apr 2021 11:06:57 +0800 Subject: [PATCH] Fixed typo Added missing closing parentheses to description of REMOTE_AUTH_ env_vars --- readme-vars.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index e94b5dd..4f66e2e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -33,12 +33,12 @@ param_env_vars: - { env_var: "REDIS_HOST", env_value: "", desc: "Redis host (optional, default: redis)" } - { env_var: "REDIS_PORT", env_value: "", desc: "Redis port number (optional, default: 6379)" } - { env_var: "REDIS_PASSWORD", env_value: "", desc: "Redis password (optional, default: none)" } - - { env_var: "REMOTE_AUTH_ENABLED", env_value: "", desc: "Enable remote authentication (optional, default: False" } - - { env_var: "REMOTE_AUTH_BACKEND", env_value: "", desc: "Python path to the custom Django authentication backend to use for external user authentication (optional, default: netbox.authentication.RemoteUserBackend" } - - { env_var: "REMOTE_AUTH_HEADER", env_value: "", desc: "Name of the HTTP header which informs NetBox of the currently authenticated user. (optional, default: HTTP_REMOTE_USER" } - - { env_var: "REMOTE_AUTH_AUTO_CREATE_USER", env_value: "", desc: "If true, NetBox will automatically create local accounts for users authenticated via a remote service (optional, default: False" } - - { env_var: "REMOTE_AUTH_DEFAULT_GROUPS", env_value: "", desc: "The list of groups to assign a new user account when created using remote authentication (optional, default: []" } - - { env_var: "REMOTE_AUTH_DEFAULT_PERMISSIONS", env_value: "", desc: "A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {}" } + - { env_var: "REMOTE_AUTH_ENABLED", env_value: "", desc: "Enable remote authentication (optional, default: False)" } + - { env_var: "REMOTE_AUTH_BACKEND", env_value: "", desc: "Python path to the custom Django authentication backend to use for external user authentication (optional, default: netbox.authentication.RemoteUserBackend)" } + - { env_var: "REMOTE_AUTH_HEADER", env_value: "", desc: "Name of the HTTP header which informs NetBox of the currently authenticated user. (optional, default: HTTP_REMOTE_USER)" } + - { env_var: "REMOTE_AUTH_AUTO_CREATE_USER", env_value: "", desc: "If true, NetBox will automatically create local accounts for users authenticated via a remote service (optional, default: False)" } + - { env_var: "REMOTE_AUTH_DEFAULT_GROUPS", env_value: "", desc: "The list of groups to assign a new user account when created using remote authentication (optional, default: [])" } + - { env_var: "REMOTE_AUTH_DEFAULT_PERMISSIONS", env_value: "", desc: "A mapping of permissions to assign a new user account when created using remote authentication (optional, default: {})" } - { env_var: "TZ", env_value: "", desc: "Timezone (i.e., America/New_York)" } param_usage_include_ports: true @@ -54,4 +54,4 @@ app_setup_block: | changelogs: - { date: "03.02.21:", desc: "Added remote authentication environment variables." } - { date: "02.01.21:", desc: "Added BASE_PATH environment variable." } - - { date: "23.08.20:", desc: "Initial Release." } \ No newline at end of file + - { date: "23.08.20:", desc: "Initial Release." }