Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Mar 21, 2025
1 parent faa8b83 commit 628afc4
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 @@ -75,13 +75,13 @@ resource "aws_security_group" "all_worker_mgmt" {
}

resource "aws_security_group" "extra_cluster_sg" {
name = format("%v%v-extra", local._prefixes["eks-security-group"], var.cluster_name)
name = format("%v%v-extra", local.prefixes["eks-security-group"], var.cluster_name)
description = format("Security group for additional access for EKS cluster %v", var.cluster_name)

tags = merge(
local.base_tags,
var.tags,
{ "Name" = format("%v%v-extra", local._prefixes["eks-security-group"], var.cluster_name) },
{ "Name" = format("%v%v-extra", local.prefixes["eks-security-group"], var.cluster_name) },
)

vpc_id = data.aws_vpc.eks_vpc.id
Expand Down

0 comments on commit 628afc4

Please sign in to comment.