Skip to content

Commit

Permalink
Use the correct idx
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgianaElena committed Jul 25, 2024
1 parent 6779e43 commit b804b44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/aws/efs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ locals {

efs_mount_targets = [
for pair in setproduct(local.subnet_ids, local.fs_ids) : {
file_system_id = pair[0]
subnet_id = pair[1]
subnet_id = pair[0]
file_system_id = pair[1]
}
]
}
Expand Down

0 comments on commit b804b44

Please sign in to comment.