Skip to content

Commit

Permalink
remove extra tomap()s
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Apr 1, 2025
1 parent cbba537 commit f763a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions security_groups.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resource "aws_security_group" "additional_eks_cluster_sg" {
tags = merge(
local.base_tags,
var.tags,
tomap({ "Name" = local.additional_eks_cluster_sg_name }),
{ "Name" = local.additional_eks_cluster_sg_name },
)

vpc_id = data.aws_vpc.eks_vpc.id
Expand Down Expand Up @@ -51,7 +51,7 @@ resource "aws_security_group" "all_worker_mgmt" {
tags = merge(
local.base_tags,
var.tags,
tomap({ "Name" = local.all_worker_mgmt_name }),
{ "Name" = local.all_worker_mgmt_name },
)

vpc_id = local.vpc_id
Expand Down

0 comments on commit f763a87

Please sign in to comment.