append slash to consul path in doc (#15260)

Co-authored-by: Chulki Lee <chulki.lee@gmail.com>
This commit is contained in:
Kit Haines 2022-07-14 15:27:31 -04:00 committed by GitHub
parent 7d9ee7558c
commit 1915ca0334
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -60,7 +60,7 @@ storage_source "mysql" {
storage_destination "consul" {
address = "127.0.0.1:8500"
path = "vault"
path = "vault/"
}
```

View File

@ -16,7 +16,7 @@ An example configuration is shown below:
```javascript
storage "consul" {
address = "127.0.0.1:8500"
path = "vault"
path = "vault/"
}
listener "tcp" {

View File

@ -23,7 +23,7 @@ check.
```hcl
storage "consul" {
address = "127.0.0.1:8500"
path = "vault"
path = "vault/"
}
```

View File

@ -808,7 +808,7 @@ and consider if they're appropriate for your deployment.
}
storage "consul" {
path = "vault"
path = "vault/"
address = "HOST_IP:8500"
}
```

View File

@ -342,8 +342,8 @@ server:
}
storage "consul" {
path = "vault"
address = "HOST_IP:8500"
path = "vault/"
}
```