简体   繁体   English

AWS 本地扩展区是否支持 AWS EFS 挂载目标?

[英]are AWS EFS Mount Targets supported in AWS Local Zones?

I am trying to create an EFS mount target in us-east-1-atl-1a AWS Local Zone using Terraform, but I received following error.我正在尝试使用 Terraform 在us-east-1-atl-1a AWS 本地区域中创建 EFS 装载目标,但我收到以下错误。 I attempted to create it manually using UI, but I don't see an option to select us-east-1-atl-1a as an AZ(See screenshot).我尝试使用 UI 手动创建它,但我没有看到将 select us-east-1-atl-1a作为 AZ 的选项(参见屏幕截图)。 Does anyone know if this AWS Local Zone supports EFS mount targets?有谁知道这个 AWS 本地区域是否支持 EFS 挂载目标? AWS Local Zone info page doesn't mention EFS at all. AWS Local Zone 信息页面根本没有提到 EFS。

Terraform Error: Terraform 错误:

│ Error: UnsupportedAvailabilityZone: Mount targets are not supported in subnet's availability zone.
│ {
│   RespMetadata: {
│     StatusCode: 400,
│     RequestID: "23192f37-77e6-421b-b623-4a2b6dfb6217"
│   },
│   ErrorCode: "UnsupportedAvailabilityZone",
│   Message_: "Mount targets are not supported in subnet's availability zone."
│ }
│
│   with aws_efs_mount_target.efs-mounts[0],
│   on efs.tf line 7, in resource "aws_efs_mount_target" "efs-mounts":
│    7: resource "aws_efs_mount_target" "efs-mounts" {
│
╵
╷
│ Error: creating EKS Cluster (d115): UnsupportedAvailabilityZoneException: Cannot create cluster 'd115' because us-east-1-atl-1a, the targeted availability zone, does not currently have sufficient capacity to support the cluster. Retry and choose from these availability zones: us-east-1a, us-east-1b, us-east-1c, us-east-1d, us-east-1f
│ {
│   RespMetadata: {
│     StatusCode: 400,
│     RequestID: "51476966-09d3-4976-b8a1-f381b9c29c17"
│   },
│   ClusterName: "d115",
│   Message_: "Cannot create cluster 'd115' because us-east-1-atl-1a, the targeted availability zone, does not currently have sufficient capacity to support the cluster. Retry and choose from these availability zones: us-east-1a, us-east-1b, us-east-1c, us-east-1d, us-east-1f",
│   ValidZones: [
│     "us-east-1a",
│     "us-east-1b",
│     "us-east-1c",
│     "us-east-1d",
│     "us-east-1f"
│   ]
│ }

EFS Mount Targets screenshot EFS 挂载目标屏幕截图

EFS is not currently listed as a service available in Local Zones. EFS 当前未列为本地区域中可用的服务。 You can see the list of services here - https://aws.amazon.com/about-aws/global-infrastructure/localzones/features/您可以在此处查看服务列表 - https://aws.amazon.com/about-aws/global-infrastructure/localzones/features/

EBS and FSx are the only storage options currently available. EBS 和 FSx 是目前唯一可用的存储选项。

This is not supported and only standard availablity zone are supported as the error indicated.这不受支持,并且仅支持标准可用区域作为错误指示。 "us-east-1a", │ "us-east-1b", │ "us-east-1c", │ "us-east-1d", │ "us-east-1f" "us-east-1a", │ "us-east-1b", │ "us-east-1c", │ "us-east-1d", │ "us-east-1f"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM