Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and sgibson91 committed Jun 13, 2024
1 parent e5e2e72 commit 1602896
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion terraform/aws/efs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ data "aws_security_group" "cluster_nodes_shared_security_group" {
}

resource "aws_efs_file_system" "homedirs" {
tags = merge(var.tags, {Name = "hub-homedirs"})
tags = merge(var.tags, { Name = "hub-homedirs" })

# Transition files to a slower, cheaper backing medium 90 days
# after they were last *accessed*. They will be transferred back to regular
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ variable "tags" {
managed_by : optional(string, "")
}
)
default = { managed_by: "2i2c" }
default = { managed_by : "2i2c" }
description = <<-EOT
Tags to apply to resources that we manage. The value is an object as we may
wish to apply multiple tags. Current values are:
Expand Down

0 comments on commit 1602896

Please sign in to comment.