NATS Put

NATS Put

Certified

Put values into NATS Key/Value bucket

Writes one or more Key/Value entries to an existing NATS bucket. Values are rendered, serialized to JSON, and the resulting revisions are returned.

yaml
type: io.kestra.plugin.nats.kv.Put
yaml
id: nats_kv_put
namespace: company.team

tasks:
  - id: put
    type: io.kestra.plugin.nats.kv.Put
    url: nats://localhost:4222
    username: nats_user
    password: "{{ secret('NATS_PASSWORD') }}"
    bucketName: my_bucket
    values:
      key1: value1
      key2: value2
      key3:
        subKey1: some other value
Properties
Min length1

Bucket name

Rendered bucket identifier that must already exist.

Min length1

URL to connect to NATS server

The format is (nats://)server_url: port. You can also provide a connection token like so: nats://token@server_url: port

Values to write

Map of keys to values rendered then serialized to JSON before being stored.

Credentials files authentification

Plaintext authentication password

Reference (ref) of the pluginDefaults to apply to this task.

Token authentification

Plaintext authentication username

SubTypeinteger

Revision numbers

Revision returned by NATS for each written key.