1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

feat: Add instance_metadata_tags attribute to launch templates (#1781)

This commit is contained in:
Bryant Biggs
2022-01-14 15:22:58 -05:00
committed by GitHub
parent aba94002e4
commit 85bb1a00b6
5 changed files with 5 additions and 0 deletions
+1
View File
@@ -183,6 +183,7 @@ resource "aws_launch_template" "this" {
http_tokens = lookup(metadata_options.value, "http_tokens", null)
http_put_response_hop_limit = lookup(metadata_options.value, "http_put_response_hop_limit", null)
http_protocol_ipv6 = lookup(metadata_options.value, "http_protocol_ipv6", null)
instance_metadata_tags = lookup(metadata_options.value, "instance_metadata_tags", null)
}
}