diff --git a/README.md b/README.md index fedd371..5cd077e 100644 --- a/README.md +++ b/README.md @@ -256,13 +256,13 @@ There are two ways to specify tags for auto-scaling group in this module - `tags | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.1 | -| [aws](#requirement\_aws) | >= 3.64 | +| [aws](#requirement\_aws) | >= 3.72 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 3.64 | +| [aws](#provider\_aws) | >= 3.72 | ## Modules diff --git a/examples/complete/README.md b/examples/complete/README.md index 787aa70..76efc20 100644 --- a/examples/complete/README.md +++ b/examples/complete/README.md @@ -30,13 +30,13 @@ Note that this example may create resources which cost money. Run `terraform des | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 0.13.1 | -| [aws](#requirement\_aws) | >= 3.64 | +| [aws](#requirement\_aws) | >= 3.72 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 3.64 | +| [aws](#provider\_aws) | >= 3.72 | ## Modules diff --git a/examples/complete/main.tf b/examples/complete/main.tf index bd213fd..67786fa 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -478,6 +478,7 @@ module "complete_lt" { http_endpoint = "enabled" http_tokens = "required" http_put_response_hop_limit = 32 + instance_metadata_tags = "enabled" } network_interfaces = [ diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf index bfce6ae..22e8d72 100644 --- a/examples/complete/versions.tf +++ b/examples/complete/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 3.64" + version = ">= 3.72" } } } diff --git a/main.tf b/main.tf index 229f6a2..56b46b7 100644 --- a/main.tf +++ b/main.tf @@ -253,6 +253,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) } } diff --git a/versions.tf b/versions.tf index bfce6ae..22e8d72 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 3.64" + version = ">= 3.72" } } }