From 04dd21dabbbb5c51f2e7f3d12932d2126cfbdcbb Mon Sep 17 00:00:00 2001 From: Milosz Galazka Date: Fri, 26 Oct 2018 03:35:01 +0200 Subject: [PATCH] Update proxysql_manage_config.py (#47613) Incorrect example - wrong module used (proxysql_global_variables instead of proxysql_manage_config) +label: docsite_pr --- .../modules/database/proxysql/proxysql_manage_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/database/proxysql/proxysql_manage_config.py b/lib/ansible/modules/database/proxysql/proxysql_manage_config.py index 45d80f6e9b..858d7546bf 100644 --- a/lib/ansible/modules/database/proxysql/proxysql_manage_config.py +++ b/lib/ansible/modules/database/proxysql/proxysql_manage_config.py @@ -61,7 +61,7 @@ EXAMPLES = ''' # This example saves the mysql users config from memory to disk. It uses # supplied credentials to connect to the proxysql admin interface. -- proxysql_global_variables: +- proxysql_manage_config: login_user: 'admin' login_password: 'admin' action: "SAVE" @@ -72,7 +72,7 @@ EXAMPLES = ''' # This example loads the mysql query rules config from memory to to runtime. It # uses supplied credentials to connect to the proxysql admin interface. -- proxysql_global_variables: +- proxysql_manage_config: config_file: '~/proxysql.cnf' action: "LOAD" config_settings: "MYSQL QUERY RULES"