Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general.
To use it in a playbook, specify: community.general.etcd3.
The below requirements are needed on the host that executes this module.
| Parameter | Choices/Defaults | Comments |
|---|---|---|
| ca_cert string | The Certificate Authority to use to verify the etcd host. Required if client_cert and client_key are defined. | |
| client_cert string | PEM formatted certificate chain file to be used for SSL client authentication. Required if client_key is defined. | |
| client_key string | PEM formatted file that contains your private key to be used for SSL client authentication. Required if client_cert is defined. | |
| host string | Default: "localhost" | the IP address of the cluster |
| key string / required | the key where the information is stored in the cluster | |
| password string | The password to use for authentication. Required if user is defined. | |
| port string | Default: 2379 | the port number used to connect to the cluster |
| state string / required | the state of the value for the key. can be present or absent | |
| timeout string | The socket level timeout in seconds. | |
| user string | The etcd user to authenticate with. | |
| value string / required | the information stored |
- name: Store a value "bar" under the key "foo" for a cluster located "http://localhost:2379"
community.general.etcd3:
key: "foo"
value: "baz3"
host: "localhost"
port: 2379
state: "present"
- name: Authenticate using user/password combination with a timeout of 10 seconds
community.general.etcd3:
key: "foo"
value: "baz3"
state: "present"
user: "someone"
password: "password123"
timeout: 10
- name: Authenticate using TLS certificates
community.general.etcd3:
key: "foo"
value: "baz3"
state: "present"
ca_cert: "/etc/ssl/certs/CA_CERT.pem"
client_cert: "/etc/ssl/certs/cert.crt"
client_key: "/etc/ssl/private/key.pem"
Common return values are documented here, the following are the fields unique to this module:
| Key | Returned | Description |
|---|---|---|
| key string | always | The key that was queried |
| old_value string | always | The previous value in the cluster |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/etcd3_module.html