Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Feb 8, 2023
1 parent 4071d84 commit 8a8af08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ locals {
efs_ap_namespaces = ["geo", "gpp", "ams", "aps", "sdpcs"]
efs_ap_pv = ["logs", "apps"]
efs_ap = [for p in setproduct(local.efs_ap_namespaces, local.efs_ap_pv) : { label = format("%v-%v", p[0], p[1]), namespace = p[0], volume = p[1] }]
efs_access_points = [for p in local.efs_ap : {
efs_access_points = lenght(var.efs_access_points) > 0 ? var.efs_access_points : [for p in local.efs_ap : {
label = p.label
name = format("data-%v", p.label)
path = format("/data-%v", p.label)
Expand Down

0 comments on commit 8a8af08

Please sign in to comment.