Put Put
Put Certified

Update an existing Key-Value entry

yaml
type: "io.kestra.plugin.core.kv.Put"
yaml
id: kv_put_string
namespace: company.team

tasks:
  - id: update_my_string
    type: io.kestra.plugin.core.kv.Put
    key: my-string-key
    value: "new-value"

yaml
id: kv_put_json
namespace: company.team

tasks:
  - id: update_my_json
    type: io.kestra.plugin.core.kv.Put
    key: my-json-key
    value:
      - key: "json-key-1"
        value: "my new value"
      - key: "nested.field"
        value: 123
Properties
Defaultfalse
Default{{ flow.namespace }}