Skip to content

Commit

Permalink
EFS: Add Name tag
Browse files Browse the repository at this point in the history
  • Loading branch information
takano32 committed Feb 22, 2024
1 parent b7eb8f6 commit 7b6617b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion efs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
resource "aws_efs_file_system" "this" {
creation_token = "${var.prefix}-${var.environment}"
encrypted = true
tags = var.tags
tags = {
Name = "${var.prefix}-${var.environment}"
}
}

resource "aws_efs_mount_target" "this" {
Expand Down

0 comments on commit 7b6617b

Please sign in to comment.