Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cloudformation/storage/storage-stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ Conditions:
- !Equals [!Ref CreateEfs, 'true']
- !Not [!Equals [!Ref SubnetThree, '']]
CreateFsxLustre: !Equals [!Ref CreateFsxLustre, 'true']
HasFsxLustreImportPath: !Not [!Equals [!Ref FsxLustreImportPath, '']]
HasFsxLustreExportPath: !Not [!Equals [!Ref FsxLustreExportPath, '']]
CreateFsxOntap: !Equals [!Ref CreateFsxOntap, 'true']
CreateFsxOpenZfs: !Equals [!Ref CreateFsxOpenZfs, 'true']
CreateFileCache: !Equals [!Ref CreateFileCache, 'true']
Expand Down Expand Up @@ -206,8 +208,8 @@ Resources:
FileSystemTypeVersion: '2.15'
LustreConfiguration:
DeploymentType: PERSISTENT_1
ExportPath: !Ref FsxLustreExportPath
ImportPath: !Ref FsxLustreImportPath
ExportPath: !If [HasFsxLustreExportPath, !Ref FsxLustreExportPath, !Ref 'AWS::NoValue']
ImportPath: !If [HasFsxLustreImportPath, !Ref FsxLustreImportPath, !Ref 'AWS::NoValue']
PerUnitStorageThroughput: 50
SecurityGroupIds:
- !Ref FsxLustreSecurityGroup
Expand Down
Loading