Skip to content

Commit

Permalink
Add logic to name EFS Uniquely
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews-repo committed Jan 5, 2024
1 parent 3433ecf commit d0cbbc4
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 @@ -467,7 +467,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 d0cbbc4

Please sign in to comment.