mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-11 21:11:32 +01:00
fix: Don't add tags on network interfaces because it's not supported yet in terraform-provider-aws (#1407)
This commit is contained in:
committed by
GitHub
parent
3529caeeb8
commit
65f5e2e497
@@ -99,20 +99,6 @@ resource "aws_launch_template" "workers" {
|
||||
)
|
||||
}
|
||||
|
||||
# Supplying custom tags to EKS instances ENI's
|
||||
tag_specifications {
|
||||
resource_type = "network-interface"
|
||||
|
||||
tags = merge(
|
||||
var.tags,
|
||||
lookup(var.node_groups_defaults, "additional_tags", {}),
|
||||
lookup(var.node_groups[each.key], "additional_tags", {}),
|
||||
{
|
||||
Name = local.node_groups_names[each.key]
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
# Tag the LT itself
|
||||
tags = merge(
|
||||
var.tags,
|
||||
|
||||
Reference in New Issue
Block a user