Skip to content

Commit c7afb27

Browse files
committed
disable transitEncryption
1 parent 139f1cb commit c7afb27

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

aws/cloudformation/dataspace-infrastructure.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -339,15 +339,14 @@ Resources:
339339
OwnerGid: "1000"
340340
Permissions: "755"
341341

342+
# Create EFS mount targets in the first subnet
342343
MigrationsFileSystemMountTarget:
343344
Type: AWS::EFS::MountTarget
344345
Properties:
345-
FileSystemId:
346-
Ref: MigrationsFileSystem
347-
SubnetId:
348-
"Fn::Select": [0, {"Ref": "SubnetIds"}]
346+
FileSystemId: !Ref MigrationsFileSystem
347+
SubnetId: !Select [0, !Ref SubnetIds]
349348
SecurityGroups:
350-
- {"Ref": "ECSSecurityGroup"}
349+
- !Ref ECSSecurityGroup
351350

352351
Outputs:
353352
ClusterName:

aws/task-definition.json.template

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@
1212
"efsVolumeConfiguration": {
1313
"fileSystemId": "${EFS_ID}",
1414
"rootDirectory": "/migrations",
15-
"transitEncryption": "ENABLED",
16-
"authorizationConfig": {
17-
"iam": "ENABLED"
18-
}
15+
"transitEncryption": "DISABLED"
1916
}
2017
}
2118
],

0 commit comments

Comments
 (0)