Skip to content

Ansible library to create, update and delete key/value pairs in Etcd

Notifications You must be signed in to change notification settings

Lotto24/ansible-library-etcd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

ansible-library-etcd

Description

Ansible library to manage Etcd keys.

Requirements

python-etcd is required to be installed.

Usage

Ensure a key is present

- name: Ensure Etcd key
  etcd_key:
    name: myKey
    value: myValue
    ttl: 10
    state: present
    etcd_host: etcd.example.com
    etcd_port: 4001

Ensure a key is absent

- name: Ensure Etcd key
  etcd_key:
    name: myKey
    state: absent
    etcd_host: etcd.example.com
    etcd_port: 4001

Author information

Thomas Krahn

About

Ansible library to create, update and delete key/value pairs in Etcd

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%