generated by https://github.com/hashicorp/terraform-plugin-docs
generated by https://github.com/hashicorp/terraform-plugin-docs
title: kestra_kv editLink: false description: |- Manages a Kestra KV Pair.
kestra_flow (Resource)
Manages a Kestra KV Pair.
Example Usage
hcl
resource "kestra_kv" "new" {
namespace = "company.team"
key = "my_key"
value = "Hello Woprld"
type = "STRING"
}
Schema
Required
namespace
(String) The flow namespace.key
(String) The key of the KV pair.value
(Multiple) the value of the KV pair.type
(String) the type of the value. Can be string, number, boolean, datatime, date, duration, JSON
Was this page helpful?