open-consul/website/pages/docs/commands/kv/export.mdx

38 lines
720 B
Plaintext

---
layout: docs
page_title: 'Commands: KV Export'
sidebar_title: export
---
# Consul KV Export
Command: `consul kv export`
The `kv export` command is used to retrieve KV pairs for the given
prefix from Consul's KV store, and write a JSON representation to
stdout. This can be used with the command "consul kv import" to move entire
trees between Consul clusters.
## Usage
Usage: `consul kv export [options] [PREFIX]`
#### API Options
@include 'http_api_options_client.mdx'
@include 'http_api_options_server.mdx'
#### Enterprise Options
@include 'http_api_namespace_options.mdx'
## Examples
To export the tree at "vault/" in the key value store:
```shell-session
$ consul kv export vault/
# JSON output
```