Put
Update an existing Key-Value entry
Put
Update an existing Key-Value entry
yaml
type: "io.kestra.plugin.core.kv.Put"Examples
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
key *Requiredstring
value *Requiredobject
errorOnMissing booleanstring
Default
falsenamespace string
Default
{{ flow.namespace }}