diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 991a8bbf..c462b7f9 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/antonbabenko/pre-commit-terraform
- rev: v1.103.0
+ rev: v1.104.0
hooks:
- id: terraform_fmt
- id: terraform_wrapper_module_for_each
diff --git a/README.md b/README.md
index 3d045ce0..cc551dcd 100644
--- a/README.md
+++ b/README.md
@@ -667,7 +667,7 @@ Q4: What does this error mean - `"We currently do not support adding policies fo
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [external](#requirement\_external) | >= 1.0 |
| [local](#requirement\_local) | >= 1.0 |
| [null](#requirement\_null) | >= 2.0 |
@@ -676,7 +676,7 @@ Q4: What does this error mean - `"We currently do not support adding policies fo
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [external](#provider\_external) | >= 1.0 |
| [local](#provider\_local) | >= 1.0 |
| [null](#provider\_null) | >= 2.0 |
@@ -797,7 +797,7 @@ No modules.
| [image\_config\_entry\_point](#input\_image\_config\_entry\_point) | The ENTRYPOINT for the docker image | `list(string)` | `[]` | no |
| [image\_config\_working\_directory](#input\_image\_config\_working\_directory) | The working directory for the docker image | `string` | `null` | no |
| [image\_uri](#input\_image\_uri) | The ECR image URI containing the function's deployment package. | `string` | `null` | no |
-| [include\_default\_tag](#input\_include\_default\_tag) | Set to false to not include the default tag in the tags map. | `bool` | `true` | no |
+| [include\_default\_tag](#input\_include\_default\_tag) | [Deprecated] Set to false to not include the default tag in the tags map. | `bool` | `true` | no |
| [invoke\_mode](#input\_invoke\_mode) | Invoke mode of the Lambda Function URL. Valid values are BUFFERED (default) and RESPONSE\_STREAM. | `string` | `null` | no |
| [ipv6\_allowed\_for\_dual\_stack](#input\_ipv6\_allowed\_for\_dual\_stack) | Allows outbound IPv6 traffic on VPC functions that are connected to dual-stack subnets | `bool` | `null` | no |
| [kms\_key\_arn](#input\_kms\_key\_arn) | The ARN of KMS key to use by your Lambda Function | `string` | `null` | no |
diff --git a/examples/alias/README.md b/examples/alias/README.md
index 6bcb2530..ba94cc57 100644
--- a/examples/alias/README.md
+++ b/examples/alias/README.md
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/alias/versions.tf b/examples/alias/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/alias/versions.tf
+++ b/examples/alias/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/async/README.md b/examples/async/README.md
index 3bca0e68..55e88d8d 100644
--- a/examples/async/README.md
+++ b/examples/async/README.md
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/async/versions.tf b/examples/async/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/async/versions.tf
+++ b/examples/async/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/build-package/README.md b/examples/build-package/README.md
index 1b8701cd..05475806 100644
--- a/examples/build-package/README.md
+++ b/examples/build-package/README.md
@@ -29,7 +29,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
diff --git a/examples/build-package/versions.tf b/examples/build-package/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/build-package/versions.tf
+++ b/examples/build-package/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/code-signing/README.md b/examples/code-signing/README.md
index 74d1062f..5046f4bb 100644
--- a/examples/code-signing/README.md
+++ b/examples/code-signing/README.md
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/code-signing/versions.tf b/examples/code-signing/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/code-signing/versions.tf
+++ b/examples/code-signing/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/complete/README.md b/examples/complete/README.md
index 552ea09c..7b3300a8 100644
--- a/examples/complete/README.md
+++ b/examples/complete/README.md
@@ -21,14 +21,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/complete/versions.tf b/examples/complete/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/complete/versions.tf
+++ b/examples/complete/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/container-image/README.md b/examples/container-image/README.md
index 8c2bf290..4df7b71c 100644
--- a/examples/container-image/README.md
+++ b/examples/container-image/README.md
@@ -20,7 +20,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [docker](#requirement\_docker) | >= 3.0 |
| [random](#requirement\_random) | >= 2.0 |
@@ -28,7 +28,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/container-image/versions.tf b/examples/container-image/versions.tf
index dbb8009c..c601bbd5 100644
--- a/examples/container-image/versions.tf
+++ b/examples/container-image/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
docker = {
source = "kreuzwerker/docker"
diff --git a/examples/deploy/README.md b/examples/deploy/README.md
index 829a0468..fc7d4bfe 100644
--- a/examples/deploy/README.md
+++ b/examples/deploy/README.md
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/deploy/versions.tf b/examples/deploy/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/deploy/versions.tf
+++ b/examples/deploy/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/event-source-mapping/README.md b/examples/event-source-mapping/README.md
index 49d4fa75..352ea75e 100644
--- a/examples/event-source-mapping/README.md
+++ b/examples/event-source-mapping/README.md
@@ -20,14 +20,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/event-source-mapping/versions.tf b/examples/event-source-mapping/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/event-source-mapping/versions.tf
+++ b/examples/event-source-mapping/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/multiple-regions/README.md b/examples/multiple-regions/README.md
index ed4c573a..493ef63d 100644
--- a/examples/multiple-regions/README.md
+++ b/examples/multiple-regions/README.md
@@ -21,15 +21,15 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
-| [aws.us-east-1](#provider\_aws.us-east-1) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
+| [aws.us-east-1](#provider\_aws.us-east-1) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/multiple-regions/versions.tf b/examples/multiple-regions/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/multiple-regions/versions.tf
+++ b/examples/multiple-regions/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/runtimes/README.md b/examples/runtimes/README.md
index 95a28a08..0fd0f6ac 100644
--- a/examples/runtimes/README.md
+++ b/examples/runtimes/README.md
@@ -24,7 +24,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [http](#requirement\_http) | >= 3.0 |
| [random](#requirement\_random) | >= 3.0 |
@@ -32,7 +32,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [http](#provider\_http) | >= 3.0 |
| [random](#provider\_random) | >= 3.0 |
diff --git a/examples/runtimes/versions.tf b/examples/runtimes/versions.tf
index 36f51034..6d52ace0 100644
--- a/examples/runtimes/versions.tf
+++ b/examples/runtimes/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/simple-cicd/README.md b/examples/simple-cicd/README.md
index 8afef1be..676ea877 100644
--- a/examples/simple-cicd/README.md
+++ b/examples/simple-cicd/README.md
@@ -22,7 +22,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
diff --git a/examples/simple-cicd/versions.tf b/examples/simple-cicd/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/simple-cicd/versions.tf
+++ b/examples/simple-cicd/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/simple/README.md b/examples/simple/README.md
index b9a4f785..3f5c8641 100644
--- a/examples/simple/README.md
+++ b/examples/simple/README.md
@@ -20,7 +20,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
diff --git a/examples/simple/versions.tf b/examples/simple/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/simple/versions.tf
+++ b/examples/simple/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/triggers/README.md b/examples/triggers/README.md
index aa6fb08f..3f5bc267 100644
--- a/examples/triggers/README.md
+++ b/examples/triggers/README.md
@@ -21,14 +21,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/triggers/versions.tf b/examples/triggers/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/triggers/versions.tf
+++ b/examples/triggers/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/with-efs/README.md b/examples/with-efs/README.md
index ce9cc15e..1ec85ff2 100644
--- a/examples/with-efs/README.md
+++ b/examples/with-efs/README.md
@@ -21,14 +21,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 2.0 |
## Modules
diff --git a/examples/with-efs/versions.tf b/examples/with-efs/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/with-efs/versions.tf
+++ b/examples/with-efs/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/with-vpc-s3-endpoint/README.md b/examples/with-vpc-s3-endpoint/README.md
index f84ba32c..adabba21 100644
--- a/examples/with-vpc-s3-endpoint/README.md
+++ b/examples/with-vpc-s3-endpoint/README.md
@@ -22,14 +22,14 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 3.4 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [random](#provider\_random) | >= 3.4 |
## Modules
diff --git a/examples/with-vpc-s3-endpoint/versions.tf b/examples/with-vpc-s3-endpoint/versions.tf
index 7f27783c..ab5c9e6e 100644
--- a/examples/with-vpc-s3-endpoint/versions.tf
+++ b/examples/with-vpc-s3-endpoint/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/examples/with-vpc/README.md b/examples/with-vpc/README.md
index e1808811..5dbfcd81 100644
--- a/examples/with-vpc/README.md
+++ b/examples/with-vpc/README.md
@@ -22,7 +22,7 @@ Note that this example may create resources which cost money. Run `terraform des
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [random](#requirement\_random) | >= 2.0 |
## Providers
diff --git a/examples/with-vpc/versions.tf b/examples/with-vpc/versions.tf
index d2f4f3e8..a3487f52 100644
--- a/examples/with-vpc/versions.tf
+++ b/examples/with-vpc/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
random = {
source = "hashicorp/random"
diff --git a/main.tf b/main.tf
index cc7d011a..861be8de 100644
--- a/main.tf
+++ b/main.tf
@@ -140,7 +140,6 @@ resource "aws_lambda_function" "this" {
}
tags = merge(
- var.include_default_tag ? { terraform-aws-modules = "lambda" } : {},
var.tags,
var.function_tags
)
diff --git a/modules/alias/README.md b/modules/alias/README.md
index 5ee31171..29ebbf1f 100644
--- a/modules/alias/README.md
+++ b/modules/alias/README.md
@@ -116,13 +116,13 @@ module "lambda" {
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
## Providers
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
## Modules
diff --git a/modules/alias/versions.tf b/modules/alias/versions.tf
index db13b0a8..4fc026fa 100644
--- a/modules/alias/versions.tf
+++ b/modules/alias/versions.tf
@@ -4,7 +4,13 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/modules/deploy/README.md b/modules/deploy/README.md
index b5d535c9..282a26db 100644
--- a/modules/deploy/README.md
+++ b/modules/deploy/README.md
@@ -101,7 +101,7 @@ module "lambda" {
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [local](#requirement\_local) | >= 1.0 |
| [null](#requirement\_null) | >= 2.0 |
@@ -109,7 +109,7 @@ module "lambda" {
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [local](#provider\_local) | >= 1.0 |
| [null](#provider\_null) | >= 2.0 |
diff --git a/modules/deploy/versions.tf b/modules/deploy/versions.tf
index ddb64c76..2590ff63 100644
--- a/modules/deploy/versions.tf
+++ b/modules/deploy/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
local = {
source = "hashicorp/local"
@@ -15,4 +15,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/modules/docker-build/README.md b/modules/docker-build/README.md
index 8d9d8315..813c976c 100644
--- a/modules/docker-build/README.md
+++ b/modules/docker-build/README.md
@@ -58,7 +58,7 @@ module "docker_image" {
| Name | Version |
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.5.7 |
-| [aws](#requirement\_aws) | >= 6.0 |
+| [aws](#requirement\_aws) | >= 6.27 |
| [docker](#requirement\_docker) | >= 3.5.0 |
| [null](#requirement\_null) | >= 2.0 |
@@ -66,7 +66,7 @@ module "docker_image" {
| Name | Version |
|------|---------|
-| [aws](#provider\_aws) | >= 6.0 |
+| [aws](#provider\_aws) | >= 6.27 |
| [docker](#provider\_docker) | >= 3.5.0 |
| [null](#provider\_null) | >= 2.0 |
diff --git a/modules/docker-build/versions.tf b/modules/docker-build/versions.tf
index b203b635..6887c359 100644
--- a/modules/docker-build/versions.tf
+++ b/modules/docker-build/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
docker = {
source = "kreuzwerker/docker"
@@ -15,4 +15,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/variables.tf b/variables.tf
index 6ea454f6..0b52263f 100644
--- a/variables.tf
+++ b/variables.tf
@@ -194,8 +194,10 @@ variable "tags" {
default = {}
}
+# TODO - remove at next breaking change
+# tflint-ignore: terraform_unused_declarations
variable "include_default_tag" {
- description = "Set to false to not include the default tag in the tags map."
+ description = "[Deprecated] Set to false to not include the default tag in the tags map."
type = bool
default = true
}
diff --git a/versions.tf b/versions.tf
index 8dea461c..cc3279ca 100644
--- a/versions.tf
+++ b/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
external = {
source = "hashicorp/external"
@@ -19,4 +19,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/wrappers/alias/versions.tf b/wrappers/alias/versions.tf
index db13b0a8..4fc026fa 100644
--- a/wrappers/alias/versions.tf
+++ b/wrappers/alias/versions.tf
@@ -4,7 +4,13 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/wrappers/deploy/versions.tf b/wrappers/deploy/versions.tf
index ddb64c76..2590ff63 100644
--- a/wrappers/deploy/versions.tf
+++ b/wrappers/deploy/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
local = {
source = "hashicorp/local"
@@ -15,4 +15,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/wrappers/docker-build/versions.tf b/wrappers/docker-build/versions.tf
index b203b635..6887c359 100644
--- a/wrappers/docker-build/versions.tf
+++ b/wrappers/docker-build/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
docker = {
source = "kreuzwerker/docker"
@@ -15,4 +15,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}
diff --git a/wrappers/versions.tf b/wrappers/versions.tf
index 8dea461c..cc3279ca 100644
--- a/wrappers/versions.tf
+++ b/wrappers/versions.tf
@@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
- version = ">= 6.0"
+ version = ">= 6.27"
}
external = {
source = "hashicorp/external"
@@ -19,4 +19,10 @@ terraform {
version = ">= 2.0"
}
}
+
+ provider_meta "aws" {
+ user_agent = [
+ "github.com/terraform-aws-modules"
+ ]
+ }
}