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

39 lines
750 B
Plaintext
Raw Normal View History

---
2020-04-07 18:55:19 +00:00
layout: docs
page_title: 'Commands: KV Export'
2020-04-07 23:56:08 +00:00
sidebar_title: 'export'
2020-04-07 18:55:19 +00:00
sidebar_current: docs-commands-kv-export
---
# Consul KV Export
Command: `consul kv export`
2017-04-04 16:33:22 +00:00
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
2020-04-07 18:55:19 +00:00
@include 'http_api_options_client.mdx'
2020-04-07 23:56:08 +00:00
2020-04-07 18:55:19 +00:00
@include 'http_api_options_server.mdx'
#### Enterprise Options
2020-04-07 18:55:19 +00:00
@include 'http_api_namespace_options.mdx'
## Examples
To export the tree at "vault/" in the key value store:
```
$ consul kv export vault/
# JSON output
```