From 585c579498772422cc6b430ff80d4f0441b5834e Mon Sep 17 00:00:00 2001 From: melanie witt Date: Thu, 5 Sep 2024 23:04:44 +0000 Subject: [PATCH] docs: Change note:: to warning:: for service user token This changes the "note" about the requirement of configuring [service_user] to a "warning" for better visibility. Also replace a few setting values with variables instead of the defaults from Devstack. Change-Id: I561690582436832f4070a2d17aa8ff79b0f788fd --- doc/source/admin/configuration/service-user-token.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/source/admin/configuration/service-user-token.rst b/doc/source/admin/configuration/service-user-token.rst index 740730af1d..c5465bbbc9 100644 --- a/doc/source/admin/configuration/service-user-token.rst +++ b/doc/source/admin/configuration/service-user-token.rst @@ -4,7 +4,7 @@ Service User Tokens =================== -.. note:: +.. warning:: Configuration of service user tokens is **required** for every Nova service for security reasons. See https://bugs.launchpad.net/nova/+bug/2004555 for @@ -36,14 +36,14 @@ configuration file, for example: [service_user] send_service_user_token = true - auth_url = https://104.130.216.102/identity + auth_url = $AUTH_URL auth_strategy = keystone auth_type = password - project_domain_name = Default + project_domain_name = $PROJECT_DOMAIN_NAME project_name = service - user_domain_name = Default + user_domain_name = $USER_DOMAIN_NAME username = nova - password = secretservice + password = $SERVICE_USER_PASSWORD ... And configure the other identity options as necessary for the service user,