Skip to content

Commit

Permalink
feat: Add support for different name for EFS (#392)
Browse files Browse the repository at this point in the history
Add logic to name EFS Uniquely

Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
  • Loading branch information
Andrews-repo and bryantbiggs committed Jan 18, 2024
1 parent 58c2081 commit bf31af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ module "efs" {
version = "1.3.1"

create = var.create && var.enable_efs
name = var.name
name = try(var.efs.name, var.name)

# File system
availability_zone_name = try(var.efs.availability_zone_name, null)
Expand Down

0 comments on commit bf31af0

Please sign in to comment.