New in version 2.0.
parameter | required | default | choices | comments |
---|---|---|---|---|
cas | no | None | used when acquiring a lock with a session. If the cas is 0, then Consul will only put the key if it does not already exist. If the cas value is non-zero, then the key is only set if the index matches the ModifyIndex of that key. | |
flags | no | None | opaque integer value that can be passed when setting a value. | |
host | no | localhost | host of the consul agent defaults to localhost | |
key | yes | the key at which the value should be stored. | ||
port | no | 8500 | the port on which the consul agent is running | |
recurse | no | if the key represents a prefix, each entry with the prefix can be retrieved by setting this to true. | ||
scheme (added in 2.1)
| no | http | the protocol scheme on which the consul agent is running | |
session | no | None | the session that should be used to acquire or release a lock associated with a key/value pair | |
state | no | present |
| the action to take with the supplied key and value. If the state is 'present', the key contents will be set to the value supplied, 'changed' will be set to true only if the value was different to the current contents. The state 'absent' will remove the key/value pair, again 'changed' will be set to true only if the key actually existed prior to the removal. An attempt can be made to obtain or free the lock associated with a key/value pair with the states 'acquire' or 'release' respectively. a valid session must be supplied to make the attempt changed will be true if the attempt is successful, false otherwise. |
token | no | None | the token key indentifying an ACL rule set that controls access to the key value pair | |
validate_certs (added in 2.1)
| no | True | whether to verify the tls certificate of the consul agent | |
value | yes | the value should be associated with the given key, required if state is present |
- name: add or update the value associated with a key in the key/value store consul_kv: key: somekey value: somevalue - name: remove a key from the store consul_kv: key: somekey state: absent - name: add a node to an arbitrary group via consul inventory (see consul.ini) consul_kv: key: ansible/groups/dc1/somenode value: 'top_secret' - name: Register a key/value pair with an associated session consul_kv: key: stg/node/server_birthday value: 20160509 session: "{{ sessionid }}" state: acquire
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Testing Ansible and Developing Modules.
© 2012–2017 Michael DeHaan
© 2017 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/consul_kv_module.html