在将 EFS 卷 ID 传递到 cloudformation 模板时,我无法弄清楚为什么这不起作用:
Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: AWS::EFS::FileSystem::Id
这也不起作用:
Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: AWS::EFS::FileSystem
我得到错误:
参数名称 EFSFileSystem 的参数类型 AWS::EFS::FileSystem::Id 不存在
但这确实传递了 ID(fs-xxxxxxx):
Parameters:
EFSFileSystem:
Description: EFS file system to mount
Type: String
不应该将类型设置为 AWS::EFS::FileSystem::Id 工作吗?