Skip to content

Commit b9fb67b

Browse files
committed
feat: Bump version requirements for AWS provider and Terraform to v6.0 and v1.5.7 respectively
1 parent 85a21cd commit b9fb67b

File tree

22 files changed

+51
-51
lines changed

22 files changed

+51
-51
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.99.0
3+
rev: v1.99.4
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_wrapper_module_for_each

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ module "ecs" {
159159

160160
| Name | Version |
161161
|------|---------|
162-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.10 |
163-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.93 |
162+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
163+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
164164

165165
## Providers
166166

examples/complete/README.md

Lines changed: 4 additions & 4 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

2727
| Name | Version |
2828
|------|---------|
29-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.10 |
30-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.93 |
29+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
30+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.93 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
3737

3838
## Modules
3939

@@ -44,7 +44,7 @@ Note that this example may create resources which will incur monetary charges on
4444
| <a name="module_ecs_cluster_disabled"></a> [ecs\_cluster\_disabled](#module\_ecs\_cluster\_disabled) | ../../modules/cluster | n/a |
4545
| <a name="module_ecs_disabled"></a> [ecs\_disabled](#module\_ecs\_disabled) | ../../ | n/a |
4646
| <a name="module_service_disabled"></a> [service\_disabled](#module\_service\_disabled) | ../../modules/service | n/a |
47-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
47+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4848

4949
## Resources
5050

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ module "alb" {
280280

281281
module "vpc" {
282282
source = "terraform-aws-modules/vpc/aws"
283-
version = "~> 5.0"
283+
version = "~> 6.0"
284284

285285
name = local.name
286286
cidr = local.vpc_cidr

examples/complete/versions.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
2-
required_version = ">= 1.3.10"
2+
required_version = ">= 1.5.7"
33

44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.93"
7+
version = ">= 6.0"
88
}
99
}
1010
}

examples/ec2-autoscaling/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ Note that this example may create resources which will incur monetary charges on
2626

2727
| Name | Version |
2828
|------|---------|
29-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.10 |
30-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.93 |
29+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
30+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.93 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
3737

3838
## Modules
3939

4040
| Name | Source | Version |
4141
|------|--------|---------|
4242
| <a name="module_alb"></a> [alb](#module\_alb) | terraform-aws-modules/alb/aws | ~> 9.0 |
43-
| <a name="module_autoscaling"></a> [autoscaling](#module\_autoscaling) | terraform-aws-modules/autoscaling/aws | ~> 6.5 |
43+
| <a name="module_autoscaling"></a> [autoscaling](#module\_autoscaling) | terraform-aws-modules/autoscaling/aws | ~> 9.0 |
4444
| <a name="module_autoscaling_sg"></a> [autoscaling\_sg](#module\_autoscaling\_sg) | terraform-aws-modules/security-group/aws | ~> 5.0 |
4545
| <a name="module_ecs_cluster"></a> [ecs\_cluster](#module\_ecs\_cluster) | ../../modules/cluster | n/a |
4646
| <a name="module_ecs_service"></a> [ecs\_service](#module\_ecs\_service) | ../../modules/service | n/a |
47-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
47+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4848

4949
## Resources
5050

examples/ec2-autoscaling/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ module "alb" {
254254

255255
module "autoscaling" {
256256
source = "terraform-aws-modules/autoscaling/aws"
257-
version = "~> 6.5"
257+
version = "~> 9.0"
258258

259259
for_each = {
260260
# On-demand instances
@@ -370,7 +370,7 @@ module "autoscaling_sg" {
370370

371371
module "vpc" {
372372
source = "terraform-aws-modules/vpc/aws"
373-
version = "~> 5.0"
373+
version = "~> 6.0"
374374

375375
name = local.name
376376
cidr = local.vpc_cidr
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
terraform {
2-
required_version = ">= 1.3.10"
2+
required_version = ">= 1.5.7"
33

44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
version = ">= 5.93"
7+
version = ">= 6.0"
88
}
99
}
1010
}

examples/fargate/README.md

Lines changed: 4 additions & 4 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

2727
| Name | Version |
2828
|------|---------|
29-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3.10 |
30-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.93 |
29+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.5.7 |
30+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 6.0 |
3131

3232
## Providers
3333

3434
| Name | Version |
3535
|------|---------|
36-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.93 |
36+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 6.0 |
3737

3838
## Modules
3939

@@ -43,7 +43,7 @@ Note that this example may create resources which will incur monetary charges on
4343
| <a name="module_ecs_cluster"></a> [ecs\_cluster](#module\_ecs\_cluster) | ../../modules/cluster | n/a |
4444
| <a name="module_ecs_service"></a> [ecs\_service](#module\_ecs\_service) | ../../modules/service | n/a |
4545
| <a name="module_ecs_task_definition"></a> [ecs\_task\_definition](#module\_ecs\_task\_definition) | ../../modules/service | n/a |
46-
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 5.0 |
46+
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 6.0 |
4747

4848
## Resources
4949

examples/fargate/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ module "alb" {
319319

320320
module "vpc" {
321321
source = "terraform-aws-modules/vpc/aws"
322-
version = "~> 5.0"
322+
version = "~> 6.0"
323323

324324
name = local.name
325325
cidr = local.vpc_cidr

0 commit comments

Comments
 (0)