2017-01-05 00:24:09 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: KV Import'
|
2017-01-05 00:24:09 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul KV Import
|
|
|
|
|
|
|
|
Command: `consul kv import`
|
|
|
|
|
|
|
|
The `kv import` command is used to import KV pairs from the JSON representation
|
|
|
|
generated by the `kv export` command.
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2018-11-07 01:14:12 +00:00
|
|
|
Usage: `consul kv import [options] [DATA]`
|
2017-01-05 00:24:09 +00:00
|
|
|
|
|
|
|
#### 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'
|
2017-01-05 00:24:09 +00:00
|
|
|
|
2021-02-19 11:04:28 +00:00
|
|
|
#### KV Import Options
|
|
|
|
|
|
|
|
- `-prefix` - Key prefix for imported data. The default value is empty meaning
|
|
|
|
root.
|
|
|
|
|
2019-12-06 16:14:56 +00:00
|
|
|
#### Enterprise Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_namespace_options.mdx'
|
2019-12-06 16:14:56 +00:00
|
|
|
|
2017-01-05 00:24:09 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
To import from a file, prepend the filename with `@`:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2017-01-05 00:24:09 +00:00
|
|
|
$ consul kv import @values.json
|
|
|
|
# Output
|
|
|
|
```
|
|
|
|
|
|
|
|
To import from stdin, use `-` as the data parameter:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2017-01-05 00:24:09 +00:00
|
|
|
$ cat values.json | consul kv import -
|
|
|
|
# Output
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also pass the JSON directly, however care must be taken with shell
|
|
|
|
escaping:
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2017-01-05 00:24:09 +00:00
|
|
|
$ consul kv import "$(cat values.json)"
|
|
|
|
# Output
|
|
|
|
```
|
2021-02-19 11:04:28 +00:00
|
|
|
|
|
|
|
To import under prefix, use `-prefix` option:
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ cat values.json | consul kv import -prefix=sub/dir/ -
|
|
|
|
# Output
|
|
|
|
```
|