Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Adds or removes ProxySQL hosts using the ProxySQL admin interface.

Notifications You must be signed in to change notification settings

timorunge/ansible-proxysql_proxysql_servers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

proxysql_proxysql_servers

Adds or removes ProxySQL hosts using the ProxySQL admin interface.

Install

To use the proxysql_proxysql_servers module just copy the file into ./library, alongside your top level playbooks, or copy it into the path specified by ANSIBLE_LIBRARY or the --module-path command line option.

Options

parameter required default choices comments
comment no Text field that can be used for any purposed defined by the user.
config_file no Specify a config file from which login_user and login_password are to be read.
hostname yes The ip address at which the ProxySQL instance can be contacted.
load_to_runtime no True Dynamically load mysql host config to runtime memory.
login_host no 127.0.0.1 The host used to connect to ProxySQL admin interface.
login_password no None The password used to authenticate to ProxySQL admin interface.
login_port no 6032 The port used to connect to ProxySQL admin interface.
login_user no None The username used to authenticate to ProxySQL admin interface.
login_unix_socket no The unix socket to communicate to the ProxySQL admin interface.
port no 6032 The port at which the ProxySQL instance can be contacted.
save_to_disk no True Save ProxySQL servers config to sqlite db on disk to persist the configuration.
state no present
  • present
  • absent
When C(present) - adds the host, when C(absent) - removes the host.
weight no 0 Currently unused, but in the roadmap for future enhancements.

Examples

# This example adds a server, it saves the ProxySQL server config to disk, but
# avoids loading the ProxySQL server config to runtime (this might be because
# several servers are being added and the user wants to push the config to
# runtime in a single batch using the M(proxysql_manage_config) module). It
# uses supplied credentials to connect to the ProxySQL admin interface.

- proxysql_proxysql_servers:
    login_user: admin
    login_password: admin
    hostname: mysql01
    state: present
    load_to_runtime: False

# This example removes a server, saves the ProxySQL server config to disk, and
# dynamically loads the ProxySQL server config to runtime. It uses credentials
# in a supplied config file to connect to the ProxySQL admin interface.

- proxysql_proxysql_servers:
    config_file: '~/proxysql.cnf'
    hostname: mysql02
    state: absent

Dependencies

License

GNU General Public License v3.0+ (see https://www.gnu.org/licenses/gpl-3.0.txt)

Author Information

About

Adds or removes ProxySQL hosts using the ProxySQL admin interface.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages