Skip to content

Commit e3cc25e

Browse files
authored
fix: Don't tag self managed node security group with kubernetes.io/cluster tag (#1774)
1 parent e3a4e81 commit e3cc25e

File tree

1 file changed

+1
-2
lines changed
  • modules/self-managed-node-group

1 file changed

+1
-2
lines changed

modules/self-managed-node-group/main.tf

+1-2
Original file line numberDiff line numberDiff line change
@@ -460,8 +460,7 @@ resource "aws_security_group" "this" {
460460
tags = merge(
461461
var.tags,
462462
{
463-
"Name" = local.security_group_name
464-
"kubernetes.io/cluster/${var.cluster_name}" = "owned"
463+
"Name" = local.security_group_name
465464
},
466465
var.security_group_tags
467466
)

0 commit comments

Comments
 (0)