是否可以通过CloudFormation为现有的EFS创建访问点?
例如,在CloudFormation模板中:
首先通过参数引用EFS
FileSystemResource:
Type: 'AWS::EFS::FileSystem'
Properties:
FileSystemId: !Ref some_param
BackupPolicy:
Status: ENABLED
PerformanceMode: generalPurpose
Encrypted: true
ThroughputMode: bursting然后引用EFS来创建接入点?
SomeAccessPoint:
Type: 'AWS::EFS::AccessPoint'
Properties:
FileSystemId: !Ref FileSystemResource发布于 2021-07-01 12:45:33
在执行此操作之前,您必须先将现有文件系统import到CloudFormation中。
https://stackoverflow.com/questions/68204412
复制相似问题