From 88565082740e21a70869f441983e5ffa8f65fc85 Mon Sep 17 00:00:00 2001 From: Adrien Brault Date: Thu, 3 Oct 2024 15:36:27 +0200 Subject: [PATCH] docs: fix CreateEfsFileSystemProvider args --- docs/addons/efs-csi-driver.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/addons/efs-csi-driver.md b/docs/addons/efs-csi-driver.md index 7c0ebddcf..9cd3a9da7 100644 --- a/docs/addons/efs-csi-driver.md +++ b/docs/addons/efs-csi-driver.md @@ -12,7 +12,7 @@ For more information on the driver, please review the [user guide](https://docs. ## Prerequisites -- The EFS file system itself must be created in AWS separately as the driver uses the EFS for storage, but it does not create it. You can create an EFS file system using the `CreateEfsFileSystemProvider`, e.g.: `.resourceProvider("efs-file-system", new CreateEfsFileSystemProvider('efs-file-system'))` +- The EFS file system itself must be created in AWS separately as the driver uses the EFS for storage, but it does not create it. You can create an EFS file system using the `CreateEfsFileSystemProvider`, e.g.: `.resourceProvider("efs-file-system", new CreateEfsFileSystemProvider({name: 'efs-file-system'}))` ## Usage @@ -64,4 +64,4 @@ If you run into this error: `Output: Could not start amazon-efs-mount-watchdog, Take a look at this workshop which shows you how to set up KMS keys for EFS and EBS: . -Similarly, if you face a mounting issue, take a look at this thread regarding EFS mounting issues: . \ No newline at end of file +Similarly, if you face a mounting issue, take a look at this thread regarding EFS mounting issues: .