Skip to content

Commit 51a6ee5

Browse files
committed
feat: Add provider meta user-agent
1 parent 7a994d3 commit 51a6ee5

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.103.0
3+
rev: v1.104.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_docs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ Examples codified under the [`examples`](https://github.com/terraform-aws-module
120120
| Name | Version |
121121
|------|---------|
122122
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
123-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
123+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.27 |
124124

125125
## Providers
126126

127127
| Name | Version |
128128
|------|---------|
129-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
129+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.27 |
130130

131131
## Modules
132132

examples/redis/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Note that this example may create resources which will incur monetary charges on
2626
| Name | Version |
2727
|------|---------|
2828
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
29-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
29+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.27 |
3030
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.27 |
3737
| <a name="provider_random"></a> [random](#provider\_random) | >= 3.0 |
3838

3939
## Modules

examples/redis/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.0"
7+
version = ">= 6.27"
88
}
99
random = {
1010
source = "hashicorp/random"

examples/valkey/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Note that this example may create resources which will incur monetary charges on
2626
| Name | Version |
2727
|------|---------|
2828
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
29-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
29+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.27 |
3030
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.27 |
3737
| <a name="provider_random"></a> [random](#provider\_random) | >= 3.0 |
3838

3939
## Modules

examples/valkey/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.0"
7+
version = ">= 6.27"
88
}
99
random = {
1010
source = "hashicorp/random"

versions.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ terraform {
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 6.0"
7+
version = ">= 6.27"
88
}
99
}
10+
11+
provider_meta "aws" {
12+
user_agent = [
13+
"github.com/terraform-aws-modules"
14+
]
15+
}
1016
}

0 commit comments

Comments
 (0)