From 717165babded9660d43c8ea7d929d895dfd7f289 Mon Sep 17 00:00:00 2001 From: Roman Iuvshyn Date: Fri, 21 Sep 2018 01:55:20 +0300 Subject: [PATCH] fixes file path option in samples (#5377) fixes file path option in samples --- website/source/api/system/audit.html.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/api/system/audit.html.md b/website/source/api/system/audit.html.md index 35a94fd43da9..15e998e653ff 100644 --- a/website/source/api/system/audit.html.md +++ b/website/source/api/system/audit.html.md @@ -40,7 +40,7 @@ $ curl \ "type": "file", "description": "Store logs in a file", "options": { - "path": "/var/log/vault.log" + "file_path": "/var/log/vault.log" } } } @@ -83,7 +83,7 @@ relevant functionality is only supported in Vault Enterprise: { "type": "file", "options": { - "path": "/var/log/vault/log" + "file_path": "/var/log/vault/log" } } ```