From 95db3971dae906d02e51a4f5467f8a7fe5b7c894 Mon Sep 17 00:00:00 2001 From: Aleksey Stepanenko Date: Tue, 18 Feb 2020 16:06:34 +0300 Subject: [PATCH] docs: update connection for the openstack provider (#6776) The option `username` does not work. Need to use user_name with underscore > Authentication failed: Exactly one of Username and UserID must be provided for password authentication The option `user_name` works, however, it's need to use `region`, `domain_name` in additional. --- website/source/docs/agent/cloud-auto-join.html.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/source/docs/agent/cloud-auto-join.html.md b/website/source/docs/agent/cloud-auto-join.html.md index 19b3a6ea71..f417791ce7 100644 --- a/website/source/docs/agent/cloud-auto-join.html.md +++ b/website/source/docs/agent/cloud-auto-join.html.md @@ -244,8 +244,11 @@ $ consul agent -retry-join "provider=os tag_key=consul tag_value=server username - `provider` (required) - the name of the provider ("os" in this case). - `tag_key` (required) - the key of the tag to auto-join on. - `tag_value` (required) - the value of the tag to auto-join on. +- `domain_name` (optional) - the name of the domain. +- `domain_id` (optional) - the id of the domain. - `project_id` (optional) - the id of the project (tenant id). -- `username` (optional) - the username to use for auth. +- `region` (optional) - the name of the region. +- `user_name` (optional) - the username to use for auth. - `password` (optional) - the password to use for auth. - `token` (optional) - the token to use for auth. - `auth_url` (optional) - the identity endpoint to use for auth.