New in version 2.5.
Parameter | Choices/Defaults | Comments |
---|---|---|
host
-
|
Default: localhost
|
the IP address of the cluster
|
key
-
/ required
|
the key where the information is stored in the cluster
|
|
port
-
|
Default: 2379
|
the port number used to connect to the cluster
|
state
-
/ required
|
the state of the value for the key.
can be present or absent
|
|
value
-
/ required
|
the information stored
|
# Store a value "bar" under the key "foo" for a cluster located "http://localhost:2379"
- etcd3:
key: "foo"
value: "baz3"
host: "localhost"
port: 2379
state: "present"
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
|
Hint
If you notice any issues in this documentation you can edit this document to improve it.