如何使用 Cloudformation 安装到现有的 EFS?

如何使用 Cloudformation 安装到现有的 EFS?

目前,我有一个 json,它将在自动缩放组中创建 EFS。但是,我该如何让它挂载之前创建的现有 EFS(这样我就可以预加载数据)

这是当前的设置

"FileSystem": {
  "Type": "AWS::EFS::FileSystem",
  "Properties": {
    "PerformanceMode": "generalPurpose",
    "FileSystemTags": [
      {
        "Key": "Name",
        "Value": { "Ref" : "VolumeName" }
      }
    ]
  }
},
"MountTarget": {
  "Type": "AWS::EFS::MountTarget",
  "Properties": {
    "FileSystemId": { "Ref": "FileSystem" },
    "SubnetId": { "Ref": "Subnet" },
    "SecurityGroups": [ { "Ref": "MountTargetSecurityGroup" } ]        
  }
},

相关内容