mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-21 17:09:04 +01:00
feat: Add ability to tag network-interface using Launch Template (#1563)
This commit is contained in:
@@ -80,6 +80,15 @@ resource "aws_launch_template" "default" {
|
||||
}
|
||||
}
|
||||
|
||||
# Supplying custom tags to EKS instances ENI's is another use-case for LaunchTemplates
|
||||
tag_specifications {
|
||||
resource_type = "network-interface"
|
||||
|
||||
tags = {
|
||||
CustomTag = "EKS example"
|
||||
}
|
||||
}
|
||||
|
||||
# Tag the LT itself
|
||||
tags = {
|
||||
CustomTag = "EKS example"
|
||||
|
||||
Reference in New Issue
Block a user