2017-01-04 18:24:09 -06:00
|
|
|
---
|
2020-09-01 10:14:13 -05:00
|
|
|
layout: commands
|
2020-04-07 14:55:19 -04:00
|
|
|
page_title: 'Commands: KV Import'
|
2017-01-04 18:24:09 -06: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.
|
|
|
|
|
2022-01-11 09:41:54 -05:00
|
|
|
The table below shows this command's [required ACLs](/api#authentication). Configuration of
|
2022-03-30 16:16:26 -05:00
|
|
|
[blocking queries](/api-docs/features/blocking) and [agent caching](/api-docs/features/caching)
|
2022-01-11 09:41:54 -05:00
|
|
|
are not supported from commands, but may be from the corresponding HTTP endpoint.
|
|
|
|
|
|
|
|
| ACL Required |
|
|
|
|
| ------------ |
|
|
|
|
| `key:write` |
|
|
|
|
|
2017-01-04 18:24:09 -06:00
|
|
|
## Usage
|
|
|
|
|
2018-11-06 20:14:12 -05:00
|
|
|
Usage: `consul kv import [options] [DATA]`
|
2017-01-04 18:24:09 -06:00
|
|
|
|
2022-07-26 23:17:11 -07:00
|
|
|
#### Command Options
|
2021-02-19 14:04:28 +03:00
|
|
|
|
|
|
|
- `-prefix` - Key prefix for imported data. The default value is empty meaning
|
2021-07-22 12:53:14 -07:00
|
|
|
root. Added in Consul 1.10.
|
2021-02-19 14:04:28 +03:00
|
|
|
|
2019-12-06 11:14:56 -05:00
|
|
|
#### Enterprise Options
|
|
|
|
|
2022-07-26 23:17:11 -07:00
|
|
|
@include 'http_api_partition_options.mdx'
|
|
|
|
|
2020-04-07 14:55:19 -04:00
|
|
|
@include 'http_api_namespace_options.mdx'
|
2019-12-06 11:14:56 -05:00
|
|
|
|
2022-07-26 23:17:11 -07:00
|
|
|
#### API Options
|
|
|
|
|
|
|
|
@include 'http_api_options_client.mdx'
|
|
|
|
|
|
|
|
@include 'http_api_options_server.mdx'
|
2021-12-14 17:55:21 -08:00
|
|
|
|
2017-01-04 18:24:09 -06:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
To import from a file, prepend the filename with `@`:
|
|
|
|
|
2020-05-19 14:32:38 -04:00
|
|
|
```shell-session
|
2017-01-04 18:24:09 -06:00
|
|
|
$ consul kv import @values.json
|
|
|
|
# Output
|
|
|
|
```
|
|
|
|
|
|
|
|
To import from stdin, use `-` as the data parameter:
|
|
|
|
|
2020-05-19 14:32:38 -04:00
|
|
|
```shell-session
|
2017-01-04 18:24:09 -06: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 14:32:38 -04:00
|
|
|
```shell-session
|
2017-01-04 18:24:09 -06:00
|
|
|
$ consul kv import "$(cat values.json)"
|
|
|
|
# Output
|
|
|
|
```
|
2021-02-19 14:04:28 +03:00
|
|
|
|
|
|
|
To import under prefix, use `-prefix` option:
|
|
|
|
|
|
|
|
```shell-session
|
|
|
|
$ cat values.json | consul kv import -prefix=sub/dir/ -
|
|
|
|
# Output
|
|
|
|
```
|