diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9223e3c4..efc335fc 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_docs diff --git a/README.md b/README.md index f1b096a4..6a51079a 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,7 @@ module "atlantis" { | Name | Version | |------|---------| | [terraform](#requirement\_terraform) | >= 1.10 | -| [aws](#requirement\_aws) | >= 6.19 | +| [aws](#requirement\_aws) | >= 6.27 | ## Providers diff --git a/examples/github-complete/README.md b/examples/github-complete/README.md index f1fb3158..1776663e 100644 --- a/examples/github-complete/README.md +++ b/examples/github-complete/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.11 | -| [aws](#requirement\_aws) | >= 6.19 | +| [aws](#requirement\_aws) | >= 6.27 | | [github](#requirement\_github) | >= 5.0 | | [random](#requirement\_random) | >= 3.0 | @@ -28,7 +28,7 @@ Note that this example may create resources which cost money. Run `terraform des | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 6.19 | +| [aws](#provider\_aws) | >= 6.27 | | [random](#provider\_random) | >= 3.0 | ## Modules diff --git a/examples/github-complete/versions.tf b/examples/github-complete/versions.tf index 8427c067..a6821110 100644 --- a/examples/github-complete/versions.tf +++ b/examples/github-complete/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 6.19" + version = ">= 6.27" } github = { source = "integrations/github" diff --git a/examples/github-separate/README.md b/examples/github-separate/README.md index 04812ad3..8d8f52a6 100644 --- a/examples/github-separate/README.md +++ b/examples/github-separate/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.11 | -| [aws](#requirement\_aws) | >= 6.19 | +| [aws](#requirement\_aws) | >= 6.27 | | [github](#requirement\_github) | >= 5.0 | | [random](#requirement\_random) | >= 3.0 | @@ -28,7 +28,7 @@ Note that this example may create resources which cost money. Run `terraform des | Name | Version | |------|---------| -| [aws](#provider\_aws) | >= 6.19 | +| [aws](#provider\_aws) | >= 6.27 | | [random](#provider\_random) | >= 3.0 | ## Modules diff --git a/examples/github-separate/versions.tf b/examples/github-separate/versions.tf index 8427c067..a6821110 100644 --- a/examples/github-separate/versions.tf +++ b/examples/github-separate/versions.tf @@ -4,7 +4,7 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 6.19" + version = ">= 6.27" } github = { source = "integrations/github" diff --git a/versions.tf b/versions.tf index e3e52642..f4a8b37f 100644 --- a/versions.tf +++ b/versions.tf @@ -4,7 +4,13 @@ terraform { required_providers { aws = { source = "hashicorp/aws" - version = ">= 6.19" + version = ">= 6.27" } } + + provider_meta "aws" { + user_agent = [ + "github.com/terraform-aws-modules" + ] + } }