From b5b9383932581c30387c6bcf4e9aab7d492399b5 Mon Sep 17 00:00:00 2001 From: Quetzalli Date: Wed, 9 Sep 2026 21:33:51 +0200 Subject: [PATCH] DOC-426: Correct stale EFS limitations (access points, mount targets, tags) Verified against src/data/coverage/efs.json and localstack-pro:latest (2026-09-01, per the linked ticket): CreateAccessPoint/DeleteAccessPoint/ DescribeAccessPoints and CreateMountTarget/DeleteMountTarget/ DescribeMountTargets are all implemented, contradicting the docs' claim that mount targets and access points are unsupported. Tagging is mixed: the legacy CreateTags/DeleteTags/DescribeTags operations are not implemented, but TagResource/UntagResource/ListTagsForResource are, so qualify that precisely instead of a blanket "generating tags" claim. Co-Authored-By: Claude Sonnet 5 --- src/content/docs/aws/services/efs.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/aws/services/efs.mdx b/src/content/docs/aws/services/efs.mdx index 110591a7..00a5c96d 100644 --- a/src/content/docs/aws/services/efs.mdx +++ b/src/content/docs/aws/services/efs.mdx @@ -109,8 +109,8 @@ lstk aws efs put-lifecycle-configuration \ ## Current Limitations -LocalStack's EFS implementation is limited and lacks support for functionalities like creating mount targets, configuring access points, and generating tags. -LocalStack uses Moto to emulate the EFS APIs, and efforts are underway to incorporate support for these features in upcoming updates. +LocalStack uses Moto to emulate the EFS APIs. +The legacy [`CreateTags`](https://docs.aws.amazon.com/efs/latest/ug/API_CreateTags.html), [`DeleteTags`](https://docs.aws.amazon.com/efs/latest/ug/API_DeleteTags.html), and [`DescribeTags`](https://docs.aws.amazon.com/efs/latest/ug/API_DescribeTags.html) operations are not supported; use [`TagResource`](https://docs.aws.amazon.com/efs/latest/ug/API_TagResource.html), [`UntagResource`](https://docs.aws.amazon.com/efs/latest/ug/API_UntagResource.html), and [`ListTagsForResource`](https://docs.aws.amazon.com/efs/latest/ug/API_ListTagsForResource.html) instead. ## API Coverage