open-consul/website/content/commands/kv/export.mdx
Zachary Shilton 5b53b5aef5
website: implement mktg 032 (#9953)
* website: migrate to new nav-data format

* website: clean up unused intro content

* website: remove deprecated sidebar_title from frontmatter

* website: add react-content to fix global style import issue
2021-04-07 15:50:38 -04:00

37 lines
702 B
Plaintext

---
layout: commands
page_title: 'Commands: KV 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
```